1
2
3
4
5
6
7
8
9
10
11
12
//! The IMAP UNSELECT command

use crate::command::CommandBody;

impl CommandBody<'_> {
    /// <div class="warning">
    /// This extension must only be used when the server advertised support for it sending the UNSELECT capability.
    /// </div>
    pub fn unselect() -> Self {
        CommandBody::Unselect
    }
}