[][src]Struct iyzipay_rust::requests::UpdatePaymentItemRequest

pub struct UpdatePaymentItemRequest { /* fields omitted */ }

Implementations

impl UpdatePaymentItemRequest[src]

pub fn new() -> Self[src]

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

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

pub fn set_sub_merchant_price<S: Into<Option<BigDecimal>>>(
    &mut self,
    sub_merchant_price: 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 UpdatePaymentItemRequest[src]

impl Default for UpdatePaymentItemRequest[src]

impl Deref for UpdatePaymentItemRequest[src]

type Target = Request

The resulting type after dereferencing.

impl DerefMut for UpdatePaymentItemRequest[src]

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

impl PKISerialize for UpdatePaymentItemRequest[src]

impl Serialize for UpdatePaymentItemRequest[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>,