pub struct ComposeSetup {
pub kind: ComposeKind,
pub base: Option<ComposeBase>,
pub to: Option<String>,
pub cc: Option<String>,
pub bcc: Option<String>,
pub subject_prefill: Option<String>,
pub subject: Option<String>,
pub fwd_attach: Option<bool>,
}Fields§
§kind: ComposeKind§base: Option<ComposeBase>§to: Option<String>§cc: Option<String>mutt’s $askcc / $askbcc, once answered.
bcc: Option<String>§subject_prefill: Option<String>What the Subject prompt will offer, worked out when To was answered and parked while the copies are asked about.
subject: Option<String>Parked here while the include-original question is up.
fwd_attach: Option<bool>mime_forward = “ask”: the question’s answer, once given.
Auto Trait Implementations§
impl Freeze for ComposeSetup
impl RefUnwindSafe for ComposeSetup
impl Send for ComposeSetup
impl Sync for ComposeSetup
impl Unpin for ComposeSetup
impl UnsafeUnpin for ComposeSetup
impl UnwindSafe for ComposeSetup
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