Enum imap_types::response::Continue
source · [−]Expand description
7.5. Server Responses - Command Continuation Request
The command continuation request response is indicated by a “+” token instead of a tag. This form of response indicates that the server is ready to accept the continuation of a command from the client. The remainder of this response is a line of text.
This response is used in the AUTHENTICATE command to transmit server data to the client, and request additional client data. This response is also used if an argument to any command is a literal.
The client is not permitted to send the octets of the literal unless the server indicates that it is expected. This permits the server to process commands and reject errors on a line-by-line basis. The remainder of the command, including the CRLF that terminates a command, follows the octets of the literal. If there are any additional command arguments, the literal octets are followed by a space and those arguments.
Variants
Basic
Base64(Cow<'a, [u8]>)
Implementations
Trait Implementations
impl<'a> Eq for Continue<'a>
impl<'a> StructuralEq for Continue<'a>
impl<'a> StructuralPartialEq for Continue<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for Continue<'a>
impl<'a> Send for Continue<'a>
impl<'a> Sync for Continue<'a>
impl<'a> Unpin for Continue<'a>
impl<'a> UnwindSafe for Continue<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more