pub enum EntryMessageData {
None,
Header(Header),
EntryIds {
idx: u64,
idz: u64,
},
Progress {
total: u64,
current: u64,
},
Attributes(EntryAttributes),
Xat(EntryXatBlob),
Acl(EntryAclBlob),
}Expand description
Wraps payloads delivered through AAEntryMessageProc.
Variants§
None
Wraps the None payload delivered by AAEntryMessageProc.
Header(Header)
Wraps the Header payload delivered by AAEntryMessageProc.
EntryIds
Wraps the EntryIds payload delivered by AAEntryMessageProc.
Fields
Progress
Wraps the Progress payload delivered by AAEntryMessageProc.
Fields
Attributes(EntryAttributes)
Wraps the Attributes payload delivered by AAEntryMessageProc.
Xat(EntryXatBlob)
Wraps the Xat payload delivered by AAEntryMessageProc.
Acl(EntryAclBlob)
Wraps the Acl payload delivered by AAEntryMessageProc.
Trait Implementations§
Auto Trait Implementations§
impl !Send for EntryMessageData
impl !Sync for EntryMessageData
impl Freeze for EntryMessageData
impl RefUnwindSafe 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