pub enum ValInMemType {
U32,
U64,
I32,
I64,
F32,
F64,
Str {
n_chars: usize,
},
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ValInMemType
impl RefUnwindSafe for ValInMemType
impl Send for ValInMemType
impl Sync for ValInMemType
impl Unpin for ValInMemType
impl UnwindSafe for ValInMemType
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