pub struct ReplyContext {
pub in_reply_to: String,
pub references: Vec<String>,
pub reply_to: String,
pub cc: String,
pub subject: String,
pub from: String,
pub thread_context: String,
}Expand description
Reply context returned by PrepareReply.
Fields§
§in_reply_to: String§references: Vec<String>§reply_to: String§cc: String§subject: String§from: String§thread_context: StringTrait Implementations§
Source§impl Clone for ReplyContext
impl Clone for ReplyContext
Source§fn clone(&self) -> ReplyContext
fn clone(&self) -> ReplyContext
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReplyContext
impl Debug for ReplyContext
Source§impl<'de> Deserialize<'de> for ReplyContext
impl<'de> Deserialize<'de> for ReplyContext
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ReplyContext
impl RefUnwindSafe for ReplyContext
impl Send for ReplyContext
impl Sync for ReplyContext
impl Unpin for ReplyContext
impl UnsafeUnpin for ReplyContext
impl UnwindSafe for ReplyContext
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