pub enum Memo {
MEMO_NONE,
MEMO_TEXT(String),
MEMO_ID(uint64),
MEMO_HASH(Hash),
MEMO_RETURN(Hash),
}
Variants§
Trait Implementations§
impl Eq for Memo
impl StructuralPartialEq for Memo
Auto Trait Implementations§
impl Freeze for Memo
impl RefUnwindSafe for Memo
impl Send for Memo
impl Sync for Memo
impl Unpin for Memo
impl UnwindSafe for Memo
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