pub struct DeleteRules {
pub flag_safe: bool,
pub untag: bool,
}Expand description
An operation that has asked the connection for something and is
waiting to be carried on. The front end keeps drawing meanwhile,
and calls Session::poll_network until the answer lands.
How a message is marked for deletion: mutt’s $flag_safe and
$delete_untag, read once per operation.
Fields§
§flag_safe: bool§untag: boolImplementations§
Trait Implementations§
Source§impl Clone for DeleteRules
impl Clone for DeleteRules
Source§fn clone(&self) -> DeleteRules
fn clone(&self) -> DeleteRules
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DeleteRules
Auto Trait Implementations§
impl Freeze for DeleteRules
impl RefUnwindSafe for DeleteRules
impl Send for DeleteRules
impl Sync for DeleteRules
impl Unpin for DeleteRules
impl UnsafeUnpin for DeleteRules
impl UnwindSafe for DeleteRules
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more