pub struct InvoiceMessageRecipient {
pub name: Option<String>,
pub email: Option<String>,
}Fields§
§name: Option<String>Name of the message recipient.
email: Option<String>Email of the message recipient.
Trait Implementations§
Source§impl Debug for InvoiceMessageRecipient
impl Debug for InvoiceMessageRecipient
Source§impl Default for InvoiceMessageRecipient
impl Default for InvoiceMessageRecipient
Source§fn default() -> InvoiceMessageRecipient
fn default() -> InvoiceMessageRecipient
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InvoiceMessageRecipient
impl<'de> Deserialize<'de> for InvoiceMessageRecipient
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
Source§impl Display for InvoiceMessageRecipient
impl Display for InvoiceMessageRecipient
Auto Trait Implementations§
impl Freeze for InvoiceMessageRecipient
impl RefUnwindSafe for InvoiceMessageRecipient
impl Send for InvoiceMessageRecipient
impl Sync for InvoiceMessageRecipient
impl Unpin for InvoiceMessageRecipient
impl UnwindSafe for InvoiceMessageRecipient
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