1//! The IMAP UNSELECT command 2 3use crate::command::CommandBody; 4 5impl CommandBody<'_> { 6 pub fn unselect() -> Self { 7 CommandBody::Unselect 8 } 9}