pub struct ImapMailboxSelectFetch {
pub seq: NonZeroU32,
pub items: Vec1<MessageDataItem<'static>>,
}Expand description
Implicit FETCH returned during a QRESYNC SELECT.
Fields§
§seq: NonZeroU32Sequence number of the changed message.
items: Vec1<MessageDataItem<'static>>FETCH data items carried by the response.
Trait Implementations§
Source§impl Clone for ImapMailboxSelectFetch
impl Clone for ImapMailboxSelectFetch
Source§fn clone(&self) -> ImapMailboxSelectFetch
fn clone(&self) -> ImapMailboxSelectFetch
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ImapMailboxSelectFetch
impl RefUnwindSafe for ImapMailboxSelectFetch
impl Send for ImapMailboxSelectFetch
impl Sync for ImapMailboxSelectFetch
impl Unpin for ImapMailboxSelectFetch
impl UnsafeUnpin for ImapMailboxSelectFetch
impl UnwindSafe for ImapMailboxSelectFetch
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