opentitanlib::util::unknown

Enum ParseError

Source
pub enum ParseError {
    Unknown(String),
}
Expand description

Creates C-like enums which preserve unknown (un-enumerated) values.

If you wanted an enum like:

#[repr(u32)]
pub enum HardenedBool {
    True = 0x739,
    False = 0x146,
    Unknown(u32),
}

Where the Unknown discriminator would be the catch-all for any non-enumerated values, you can use with_unknown! as follows:

with_unknown! {
    pub enum HardenedBool: u32 {
        True = 0x739,
        False = 0x14d,
    }
}

This “enum” can be used later in match statements:

match foo {
    HardenedBool::True => do_the_thing(),
    HardenedBool::False => do_the_opposite_thing(),
    HardenedBool(x) => panic!("Oh noes! {} is neither True nor False!", x),
}

Behind the scenes, with_unknown! implements a newtype struct and creates associated constants for each of the enumerated values. The struct also implements Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug and Display (including the hex, octal and binary versions).

In addition, serde::Serialize and serde::Deserialize are implemented. The serialized form is a string for known values and an integer for all unknown values.

Variants§

§

Unknown(String)

Trait Implementations§

Source§

impl Debug for ParseError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for ParseError

Source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for ParseError

1.30.0 · Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V