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

pub struct Apm { /* fields omitted */ }

Implementations

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<'de> Deserialize<'de> for Apm[src]

impl Serialize for Apm[src]

Auto Trait Implementations

impl RefUnwindSafe for Apm

impl Send for Apm

impl Sync for Apm

impl Unpin for Apm

impl UnwindSafe for Apm

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,