pub struct SendImapCommandOk<T: Encoder> {
pub message: T::Message<'static>,
pub data: Vec<Data<'static>>,
pub untagged: Vec<StatusBody<'static>>,
pub tagged: Option<Tagged<'static>>,
pub bye: Option<Bye<'static>>,
pub continuation_request: Option<CommandContinuationRequest<'static>>,
}Expand description
Trait-surface successful output: mirror of SendImapCommandResult::Ok.
Fields§
§message: T::Message<'static>§data: Vec<Data<'static>>§untagged: Vec<StatusBody<'static>>§tagged: Option<Tagged<'static>>§bye: Option<Bye<'static>>§continuation_request: Option<CommandContinuationRequest<'static>>Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for SendImapCommandOk<T>
impl<T> RefUnwindSafe for SendImapCommandOk<T>
impl<T> Send for SendImapCommandOk<T>
impl<T> Sync for SendImapCommandOk<T>
impl<T> Unpin for SendImapCommandOk<T>
impl<T> UnsafeUnpin for SendImapCommandOk<T>
impl<T> UnwindSafe for SendImapCommandOk<T>
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