pub enum Value {
Integer(i32),
Float(f64),
String(String),
Boolean(bool),
}
Expand description
Represents the possible types of the value of a property in a AIOProtocolError
Variants§
Integer(i32)
A 32-bit integer value
Float(f64)
A 64-bit floating point value
String(String)
A String value
Boolean(bool)
A bool value
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Value
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
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