pub struct Billing {
pub m_id: String,
pub customer_key: String,
pub authenticated_at: String,
pub method: PaymentMethod,
pub billing_key: String,
pub card: BillingCard,
}
Fields§
§m_id: String
§customer_key: String
§authenticated_at: String
§method: PaymentMethod
§billing_key: String
§card: BillingCard
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Billing
impl<'de> Deserialize<'de> for Billing
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 Billing
impl RefUnwindSafe for Billing
impl Send for Billing
impl Sync for Billing
impl Unpin for Billing
impl UnwindSafe for Billing
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