imap-types 1.0.0

Misuse-resistant data structures for IMAP
Documentation
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
    }
}