pub struct UpcomingInvoicePayload {
pub user_name: String,
pub plan_name: String,
pub amount_formatted: String,
pub invoice_date: String,
pub dashboard_url: String,
pub support_url: String,
}Fields§
§user_name: String§plan_name: String§amount_formatted: String§invoice_date: String§dashboard_url: String§support_url: StringTrait Implementations§
Source§impl Clone for UpcomingInvoicePayload
impl Clone for UpcomingInvoicePayload
Source§fn clone(&self) -> UpcomingInvoicePayload
fn clone(&self) -> UpcomingInvoicePayload
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 UpcomingInvoicePayload
impl Debug for UpcomingInvoicePayload
Source§impl<'de> Deserialize<'de> for UpcomingInvoicePayload
impl<'de> Deserialize<'de> for UpcomingInvoicePayload
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 UpcomingInvoicePayload
impl RefUnwindSafe for UpcomingInvoicePayload
impl Send for UpcomingInvoicePayload
impl Sync for UpcomingInvoicePayload
impl Unpin for UpcomingInvoicePayload
impl UnsafeUnpin for UpcomingInvoicePayload
impl UnwindSafe for UpcomingInvoicePayload
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