Enum ParamKind

Source
pub enum ParamKind {
    Bool(bool),
    I8(i8),
    U8(u8),
    I16(i16),
    U16(u16),
    I32(i32),
    U32(u32),
    Float(f32),
    Hash(Hash40),
    Str(String),
    List(ParamList),
    Struct(ParamStruct),
}
Expand description

The central data structure to param files and params. Similar to tree-like recursive data formats such as JSON.

Variants§

§

Bool(bool)

§

I8(i8)

§

U8(u8)

§

I16(i16)

§

U16(u16)

§

I32(i32)

§

U32(u32)

§

Float(f32)

§

Hash(Hash40)

§

Str(String)

§

List(ParamList)

§

Struct(ParamStruct)

Implementations§

Source§

impl ParamKind

Source

pub fn try_into_owned<T>(self) -> Result<T, T::Error>
where T: TryFrom<ParamKind>,

Attempts to convert an owned param into the contained value. Returns an error if the contained value is not the expected type.

Source

pub fn try_into_ref<'a, T>( &'a self, ) -> Result<&'a T, <&'a T as TryFrom<&'a ParamKind>>::Error>
where &'a T: TryFrom<&'a ParamKind>,

Attempts to convert a param by reference into a reference of the contained value. Returns an error if the contained value is not the expected type.

Source

pub fn try_into_mut<'a, T>( &'a mut self, ) -> Result<&'a mut T, <&'a mut T as TryFrom<&'a mut ParamKind>>::Error>
where &'a mut T: TryFrom<&'a mut ParamKind>,

Attempts to convert a param by mutable reference into a mutable reference of the contained value. Returns an error if the contained value is not the expected type.

Source

pub fn unwrap_as_hashmap(self) -> HashMap<Hash40, ParamKind>

Converts an owned param into a HashMap, indexing into the contained params. Panics if the param was not a ParamKind::Struct.

Source

pub fn unwrap_as_hashmap_ref(&self) -> HashMap<Hash40, &ParamKind>

Converts a reference to a param into a HashMap, indexing into references to the contained params. Panics if the param was not a ParamKind::Struct.

Source

pub fn unwrap_as_hashmap_mut(&mut self) -> HashMap<Hash40, &mut ParamKind>

Converts a mutable reference to a param into a HashMap, indexing into mutable references to the contained params. Panics if the param was not a ParamKind::Struct.

Trait Implementations§

Source§

impl Clone for ParamKind

Source§

fn clone(&self) -> ParamKind

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ParamKind

Source§

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

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

impl<'de> Deserialize<'de> for ParamKind

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl From<Hash40> for ParamKind

Source§

fn from(v: Hash40) -> ParamKind

Converts to this type from the input type.
Source§

impl From<ParamList> for ParamKind

Source§

fn from(v: ParamList) -> ParamKind

Converts to this type from the input type.
Source§

impl From<ParamStruct> for ParamKind

Source§

fn from(v: ParamStruct) -> ParamKind

Converts to this type from the input type.
Source§

impl From<String> for ParamKind

Source§

fn from(v: String) -> ParamKind

Converts to this type from the input type.
Source§

impl From<bool> for ParamKind

Source§

fn from(v: bool) -> ParamKind

Converts to this type from the input type.
Source§

impl From<f32> for ParamKind

Source§

fn from(v: f32) -> ParamKind

Converts to this type from the input type.
Source§

impl From<i16> for ParamKind

Source§

fn from(v: i16) -> ParamKind

Converts to this type from the input type.
Source§

impl From<i32> for ParamKind

Source§

fn from(v: i32) -> ParamKind

Converts to this type from the input type.
Source§

impl From<i8> for ParamKind

Source§

fn from(v: i8) -> ParamKind

Converts to this type from the input type.
Source§

impl From<u16> for ParamKind

Source§

fn from(v: u16) -> ParamKind

Converts to this type from the input type.
Source§

impl From<u32> for ParamKind

Source§

fn from(v: u32) -> ParamKind

Converts to this type from the input type.
Source§

impl From<u8> for ParamKind

Source§

fn from(v: u8) -> ParamKind

Converts to this type from the input type.
Source§

impl PartialEq for ParamKind

Source§

fn eq(&self, other: &ParamKind) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for ParamKind

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<'a> TryFrom<&'a ParamKind> for &'a Hash40

Source§

type Error = &'static str

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

fn try_from(param: &'a ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a ParamKind> for &'a ParamList

Source§

type Error = &'static str

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

fn try_from(param: &'a ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a ParamKind> for &'a ParamStruct

Source§

type Error = &'static str

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

fn try_from(param: &'a ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a ParamKind> for &'a String

Source§

type Error = &'static str

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

fn try_from(param: &'a ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a ParamKind> for &'a bool

Source§

type Error = &'static str

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

fn try_from(param: &'a ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a ParamKind> for &'a f32

Source§

type Error = &'static str

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

fn try_from(param: &'a ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a ParamKind> for &'a i16

Source§

type Error = &'static str

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

fn try_from(param: &'a ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a ParamKind> for &'a i32

Source§

type Error = &'static str

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

fn try_from(param: &'a ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a ParamKind> for &'a i8

Source§

type Error = &'static str

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

fn try_from(param: &'a ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a ParamKind> for &'a u16

Source§

type Error = &'static str

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

fn try_from(param: &'a ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a ParamKind> for &'a u32

Source§

type Error = &'static str

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

fn try_from(param: &'a ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a ParamKind> for &'a u8

Source§

type Error = &'static str

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

fn try_from(param: &'a ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a mut ParamKind> for &'a mut Hash40

Source§

type Error = &'static str

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

fn try_from(param: &'a mut ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a mut ParamKind> for &'a mut ParamList

Source§

type Error = &'static str

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

fn try_from(param: &'a mut ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a mut ParamKind> for &'a mut ParamStruct

Source§

type Error = &'static str

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

fn try_from(param: &'a mut ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a mut ParamKind> for &'a mut String

Source§

type Error = &'static str

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

fn try_from(param: &'a mut ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a mut ParamKind> for &'a mut bool

Source§

type Error = &'static str

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

fn try_from(param: &'a mut ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a mut ParamKind> for &'a mut f32

Source§

type Error = &'static str

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

fn try_from(param: &'a mut ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a mut ParamKind> for &'a mut i16

Source§

type Error = &'static str

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

fn try_from(param: &'a mut ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a mut ParamKind> for &'a mut i32

Source§

type Error = &'static str

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

fn try_from(param: &'a mut ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a mut ParamKind> for &'a mut i8

Source§

type Error = &'static str

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

fn try_from(param: &'a mut ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a mut ParamKind> for &'a mut u16

Source§

type Error = &'static str

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

fn try_from(param: &'a mut ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a mut ParamKind> for &'a mut u32

Source§

type Error = &'static str

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

fn try_from(param: &'a mut ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a mut ParamKind> for &'a mut u8

Source§

type Error = &'static str

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

fn try_from(param: &'a mut ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<ParamKind> for Hash40

Source§

type Error = &'static str

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

fn try_from(param: ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<ParamKind> for ParamList

Source§

type Error = &'static str

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

fn try_from(param: ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<ParamKind> for ParamStruct

Source§

type Error = &'static str

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

fn try_from(param: ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<ParamKind> for String

Source§

type Error = &'static str

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

fn try_from(param: ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<ParamKind> for bool

Source§

type Error = &'static str

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

fn try_from(param: ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<ParamKind> for f32

Source§

type Error = &'static str

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

fn try_from(param: ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<ParamKind> for i16

Source§

type Error = &'static str

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

fn try_from(param: ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<ParamKind> for i32

Source§

type Error = &'static str

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

fn try_from(param: ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<ParamKind> for i8

Source§

type Error = &'static str

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

fn try_from(param: ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<ParamKind> for u16

Source§

type Error = &'static str

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

fn try_from(param: ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<ParamKind> for u32

Source§

type Error = &'static str

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

fn try_from(param: ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<ParamKind> for u8

Source§

type Error = &'static str

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

fn try_from(param: ParamKind) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl StructuralPartialEq for ParamKind

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. 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.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,