pub struct RemoteMessage {
pub mailbox: String,
pub uid_validity: u64,
pub uid: u64,
pub flags: Vec<String>,
pub raw_eml: Vec<u8>,
}Fields§
§mailbox: String§uid_validity: u64§uid: u64§flags: Vec<String>§raw_eml: Vec<u8>Trait Implementations§
Source§impl Clone for RemoteMessage
impl Clone for RemoteMessage
Source§fn clone(&self) -> RemoteMessage
fn clone(&self) -> RemoteMessage
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 RemoteMessage
impl RefUnwindSafe for RemoteMessage
impl Send for RemoteMessage
impl Sync for RemoteMessage
impl Unpin for RemoteMessage
impl UnsafeUnpin for RemoteMessage
impl UnwindSafe for RemoteMessage
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