pub struct ComposeBase {Show 14 fields
pub path: PathBuf,
pub reply_to: String,
pub from_hdr: String,
pub has_reply_to: bool,
pub orig_to: String,
pub orig_cc: String,
pub list_post: Option<String>,
pub followup_to: String,
pub from_addr: String,
pub from_display: String,
pub subject: String,
pub date: i64,
pub msg_id: Option<String>,
pub references: Vec<String>,
}Expand description
Snapshot of the message being replied to / forwarded, taken when the compose flow starts.
Fields§
§path: PathBuf§reply_to: String§from_hdr: StringThe From header as written, the reply target when the Reply-To question is answered no.
has_reply_to: boolThe message has a Reply-To differing from From, worth the mutt $reply_to (ask-yes) question.
orig_to: String§orig_cc: String§list_post: Option<String>List-Post’s posting address, when the list published one.
followup_to: StringMail-Followup-To as the sender wrote it, honored by a group reply (mutt does the same).
from_addr: StringBare author address, for the forward subject’s %a.
from_display: String§subject: String§date: i64§msg_id: Option<String>§references: Vec<String>Auto Trait Implementations§
impl Freeze for ComposeBase
impl RefUnwindSafe for ComposeBase
impl Send for ComposeBase
impl Sync for ComposeBase
impl Unpin for ComposeBase
impl UnsafeUnpin for ComposeBase
impl UnwindSafe for ComposeBase
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