pub enum Value<'a, S> {
Debug(S),
String(S),
Float(f64),
Integer(i64),
Unsigned(u64),
Bool(bool),
ByteArray(&'a [u8]),
}Variants§
Trait Implementations§
impl<'a, S: Copy> Copy for Value<'a, S>
Auto Trait Implementations§
impl<'a, S> Freeze for Value<'a, S>where
S: Freeze,
impl<'a, S> RefUnwindSafe for Value<'a, S>where
S: RefUnwindSafe,
impl<'a, S> Send for Value<'a, S>where
S: Send,
impl<'a, S> Sync for Value<'a, S>where
S: Sync,
impl<'a, S> Unpin for Value<'a, S>where
S: Unpin,
impl<'a, S> UnwindSafe for Value<'a, S>where
S: UnwindSafe,
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