pub struct GetPaymentMethodsPaymentMethodRequest {
pub expand: Option<Vec<String>>,
pub payment_method: String,
}
Expand description
You should use this struct via StripeClient::get_payment_methods_payment_method
.
On request success, this will return a PaymentMethod
.
Fields§
§expand: Option<Vec<String>>
§payment_method: String
Trait Implementations§
Source§impl Clone for GetPaymentMethodsPaymentMethodRequest
impl Clone for GetPaymentMethodsPaymentMethodRequest
Source§fn clone(&self) -> GetPaymentMethodsPaymentMethodRequest
fn clone(&self) -> GetPaymentMethodsPaymentMethodRequest
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<'de> Deserialize<'de> for GetPaymentMethodsPaymentMethodRequest
impl<'de> Deserialize<'de> for GetPaymentMethodsPaymentMethodRequest
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 GetPaymentMethodsPaymentMethodRequest
impl RefUnwindSafe for GetPaymentMethodsPaymentMethodRequest
impl Send for GetPaymentMethodsPaymentMethodRequest
impl Sync for GetPaymentMethodsPaymentMethodRequest
impl Unpin for GetPaymentMethodsPaymentMethodRequest
impl UnwindSafe for GetPaymentMethodsPaymentMethodRequest
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