pub enum EcValue {
}Variants§
Bool(bool)
I8(i8)
U8(u8)
I16(i16)
U16(u16)
I32(i32)
U32(u32)
I64(i64)
U64(u64)
F32(f32)
F64(f64)
String(String)
Bytes(Vec<u8>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EcValue
impl RefUnwindSafe for EcValue
impl Send for EcValue
impl Sync for EcValue
impl Unpin for EcValue
impl UnsafeUnpin for EcValue
impl UnwindSafe for EcValue
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