pub struct InvoiceMessageSubjectAndBody {
pub subject: String,
pub invoice_id: i64,
pub body: String,
pub reminder: bool,
pub thank_you: bool,
}Fields§
§subject: String§invoice_id: i64§body: String§reminder: bool§thank_you: boolTrait Implementations§
Source§impl Debug for InvoiceMessageSubjectAndBody
impl Debug for InvoiceMessageSubjectAndBody
Source§impl Default for InvoiceMessageSubjectAndBody
impl Default for InvoiceMessageSubjectAndBody
Source§fn default() -> InvoiceMessageSubjectAndBody
fn default() -> InvoiceMessageSubjectAndBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InvoiceMessageSubjectAndBody
impl<'de> Deserialize<'de> for InvoiceMessageSubjectAndBody
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 InvoiceMessageSubjectAndBody
impl RefUnwindSafe for InvoiceMessageSubjectAndBody
impl Send for InvoiceMessageSubjectAndBody
impl Sync for InvoiceMessageSubjectAndBody
impl Unpin for InvoiceMessageSubjectAndBody
impl UnwindSafe for InvoiceMessageSubjectAndBody
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