pub struct AccountCapabilities {
Show 37 fields pub acss_debit_payments: Option<String>, pub affirm_payments: Option<String>, pub afterpay_clearpay_payments: Option<String>, pub au_becs_debit_payments: Option<String>, pub bacs_debit_payments: Option<String>, pub bancontact_payments: Option<String>, pub bank_transfer_payments: Option<String>, pub blik_payments: Option<String>, pub boleto_payments: Option<String>, pub card_issuing: Option<String>, pub card_payments: Option<String>, pub cartes_bancaires_payments: Option<String>, pub cashapp_payments: Option<String>, pub eps_payments: Option<String>, pub fpx_payments: Option<String>, pub giropay_payments: Option<String>, pub grabpay_payments: Option<String>, pub ideal_payments: Option<String>, pub india_international_payments: Option<String>, pub jcb_payments: Option<String>, pub klarna_payments: Option<String>, pub konbini_payments: Option<String>, pub legacy_payments: Option<String>, pub link_payments: Option<String>, pub oxxo_payments: Option<String>, pub p24_payments: Option<String>, pub paynow_payments: Option<String>, pub promptpay_payments: Option<String>, pub revolut_pay_payments: Option<String>, pub sepa_debit_payments: Option<String>, pub sofort_payments: Option<String>, pub tax_reporting_us1099_k: Option<String>, pub tax_reporting_us1099_misc: Option<String>, pub transfers: Option<String>, pub treasury: Option<String>, pub us_bank_account_ach_payments: Option<String>, pub zip_payments: Option<String>,
}

Fields§

§acss_debit_payments: Option<String>§affirm_payments: Option<String>§afterpay_clearpay_payments: Option<String>§au_becs_debit_payments: Option<String>§bacs_debit_payments: Option<String>§bancontact_payments: Option<String>§bank_transfer_payments: Option<String>§blik_payments: Option<String>§boleto_payments: Option<String>§card_issuing: Option<String>§card_payments: Option<String>§cartes_bancaires_payments: Option<String>§cashapp_payments: Option<String>§eps_payments: Option<String>§fpx_payments: Option<String>§giropay_payments: Option<String>§grabpay_payments: Option<String>§ideal_payments: Option<String>§india_international_payments: Option<String>§jcb_payments: Option<String>§klarna_payments: Option<String>§konbini_payments: Option<String>§legacy_payments: Option<String>§link_payments: Option<String>§oxxo_payments: Option<String>§p24_payments: Option<String>§paynow_payments: Option<String>§promptpay_payments: Option<String>§revolut_pay_payments: Option<String>§sepa_debit_payments: Option<String>§sofort_payments: Option<String>§tax_reporting_us1099_k: Option<String>§tax_reporting_us1099_misc: Option<String>§transfers: Option<String>§treasury: Option<String>§us_bank_account_ach_payments: Option<String>§zip_payments: Option<String>

Trait Implementations§

source§

impl Clone for AccountCapabilities

source§

fn clone(&self) -> AccountCapabilities

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AccountCapabilities

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for AccountCapabilities

source§

fn default() -> AccountCapabilities

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for AccountCapabilities

source§

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 AccountCapabilities

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Serialize for AccountCapabilities

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,