[][src]Struct iyzipay_rust::model::CheckoutForm

pub struct CheckoutForm { /* fields omitted */ }

Methods

impl CheckoutForm[src]

pub fn retrieve(
    req: &RetrieveCheckoutFormRequest,
    options: &Options
) -> Result<CheckoutForm, Box<dyn Error>>
[src]

pub fn set_token<T: Into<String>>(&mut self, token: T)[src]

pub fn set_callback_url<T: Into<String>>(&mut self, callback_url: T)[src]

pub fn token(&self) -> Option<&String>[src]

pub fn callback_url(&self) -> Option<&String>[src]

Trait Implementations

impl Default for CheckoutForm[src]

impl Debug for CheckoutForm[src]

impl Deref for CheckoutForm[src]

type Target = PaymentResource

The resulting type after dereferencing.

impl Serialize for CheckoutForm[src]

impl<'de> Deserialize<'de> for CheckoutForm where
    CheckoutForm: Default
[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Erased for T