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

use crate::command::CommandBody;

impl CommandBody<'_> {
    pub fn unselect() -> Self {
        CommandBody::Unselect
    }
}