[][src]Struct iyzipay_rust::requests::RetrievePaymentRequest

pub struct RetrievePaymentRequest { /* fields omitted */ }

Implementations

impl RetrievePaymentRequest[src]

pub fn new() -> Self[src]

pub fn set_payment_id<S: Into<String>>(&mut self, payment_id: S)[src]

pub fn set_payment_conversation_id<S: Into<String>>(
    &mut self,
    payment_conversation_id: S
)
[src]

Methods from Deref<Target = Request>

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

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

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

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

Trait Implementations

impl Debug for RetrievePaymentRequest[src]

impl Default for RetrievePaymentRequest[src]

impl Deref for RetrievePaymentRequest[src]

type Target = Request

The resulting type after dereferencing.

impl DerefMut for RetrievePaymentRequest[src]

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

impl PKISerialize for RetrievePaymentRequest[src]

impl Serialize for RetrievePaymentRequest[src]

Auto Trait Implementations

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>,