pub enum ComposeKind {
New,
NewWithTo {
to: String,
},
Reply {
in_reply_to: String,
references: Vec<String>,
to: String,
cc: String,
subject: String,
thread_context: String,
},
Forward {
subject: String,
original_context: String,
},
}Expand description
The kind of compose action.
Variants§
Auto Trait Implementations§
impl Freeze for ComposeKind
impl RefUnwindSafe for ComposeKind
impl Send for ComposeKind
impl Sync for ComposeKind
impl Unpin for ComposeKind
impl UnsafeUnpin for ComposeKind
impl UnwindSafe for ComposeKind
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