pub enum DynType {
}Expand description
Represents a dynamic type that can be deserialized from binary data
Variants§
I8
I16
I32
I64
I128
U8
U16
U32
U64
U128
Bool
FixedArray(Box<DynType>, usize)
Complex types
Array(Box<DynType>)
Struct(Vec<(String, DynType)>)
Enum(Vec<(String, Option<DynType>)>)
Option(Box<DynType>)
Trait Implementations§
impl StructuralPartialEq for DynType
Auto Trait Implementations§
impl Freeze for DynType
impl RefUnwindSafe for DynType
impl Send for DynType
impl Sync for DynType
impl Unpin for DynType
impl UnwindSafe for DynType
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