pub enum TmapOperation {
Header {
data: Vec<u8>,
},
Set {
key: String,
data: Vec<u8>,
},
Create {
name: String,
data: Vec<u8>,
},
Remove {
name: String,
},
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TmapOperation
impl RefUnwindSafe for TmapOperation
impl Send for TmapOperation
impl Sync for TmapOperation
impl Unpin for TmapOperation
impl UnwindSafe for TmapOperation
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