pub struct CreditPurchaseResponse {
pub checkout_url: String,
}Expand description
Response from purchasing a credit pack.
Fields§
§checkout_url: StringURL to redirect the user to for payment.
Trait Implementations§
Source§impl Clone for CreditPurchaseResponse
impl Clone for CreditPurchaseResponse
Source§fn clone(&self) -> CreditPurchaseResponse
fn clone(&self) -> CreditPurchaseResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreditPurchaseResponse
impl Debug for CreditPurchaseResponse
Source§impl<'de> Deserialize<'de> for CreditPurchaseResponse
impl<'de> Deserialize<'de> for CreditPurchaseResponse
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 CreditPurchaseResponse
impl RefUnwindSafe for CreditPurchaseResponse
impl Send for CreditPurchaseResponse
impl Sync for CreditPurchaseResponse
impl Unpin for CreditPurchaseResponse
impl UnsafeUnpin for CreditPurchaseResponse
impl UnwindSafe for CreditPurchaseResponse
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