[][src]Struct iyzipay_rust::model::Apm

pub struct Apm { /* fields omitted */ }

Methods

impl Apm[src]

pub fn create(
    req: &CreateApmInitializeRequest,
    options: &Options
) -> Result<Apm, Box<dyn Error>>
[src]

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

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

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

Trait Implementations

impl Debug for Apm[src]

impl Deref for Apm[src]

type Target = ApmResource

The resulting type after dereferencing.

impl Serialize for Apm[src]

impl<'de> Deserialize<'de> for Apm[src]

Auto Trait Implementations

impl Send for Apm

impl Sync for Apm

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