pub enum Value {
}Variants§
None
Value of TypeKind::Optional.
Bool(bool)
Value of TypeKind::Bool.
Char(char)
Value of TypeKind::String.
F32(f32)
Value of TypeKind::Float.
F64(f64)
Value of TypeKind::Float.
U8(u8)
Value of TypeKind::Integer.
I8(i8)
Value of TypeKind::Integer.
U16(u16)
Value of TypeKind::Integer.
I16(i16)
Value of TypeKind::Integer.
U32(u32)
Value of TypeKind::Integer.
I32(i32)
Value of TypeKind::Integer.
U64(u64)
Value of TypeKind::Integer.
I64(i64)
Value of TypeKind::Integer.
U128(u128)
Value of TypeKind::Integer.
I128(i128)
Value of TypeKind::Integer.
Usize(usize)
Value of TypeKind::Integer.
Isize(isize)
Value of TypeKind::Integer.
String(String)
Value of TypeKind::Integer.
Array(Vec<Value>)
Value of TypeKind::Array or TypeKind::Tuple.
Map(Vec<(Value, Value)>)
Value of TypeKind::Map or TypeKind::Struct.
Implementations§
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