pub enum AuxType {
Integer(i32),
String(String),
Float(f32),
Char(u8),
}Expand description
Variants§
Integer(i32)
Corresponds to [Aux::Integer].
String(String)
Corresponds to Aux::String, but as an owned String.
Float(f32)
Corresponds to Aux::Float.
Char(u8)
Corresponds to Aux::Char.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AuxType
impl RefUnwindSafe for AuxType
impl Send for AuxType
impl Sync for AuxType
impl Unpin for AuxType
impl UnwindSafe for AuxType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more