use Result;
use Parser;
use ;
use crateImapClient;
/// Send a raw IMAP command and print the verbatim server response.
///
/// The command is sent as-is, without tag and without trailing CRLF
/// (e.g. `CAPABILITY` or `SEARCH FROM "foo@bar"`); a tag is prepended
/// and the response is read up to and including the matching tagged
/// completion line. Tagged NO/BAD replies are returned as output, not
/// errors. Synchronizing literals in the command are not supported.