pub enum EntryMessageData {
None,
Header(Header),
EntryIds {
idx: u64,
idz: u64,
},
Progress {
total: u64,
current: u64,
},
Attributes(EntryAttributes),
Xat(EntryXatBlob),
Acl(EntryAclBlob),
}Variants§
None
Header(Header)
EntryIds
Progress
Attributes(EntryAttributes)
Xat(EntryXatBlob)
Acl(EntryAclBlob)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EntryMessageData
impl RefUnwindSafe for EntryMessageData
impl !Send for EntryMessageData
impl !Sync for EntryMessageData
impl Unpin for EntryMessageData
impl UnsafeUnpin for EntryMessageData
impl UnwindSafe for EntryMessageData
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