[][src]Struct iyzipay_rust::requests::CreatePeccoInitializeRequest

pub struct CreatePeccoInitializeRequest { /* fields omitted */ }

Implementations

impl CreatePeccoInitializeRequest[src]

pub fn new() -> Self[src]

pub fn set_price<S: Into<BigDecimal>>(&mut self, price: S)[src]

pub fn set_paid_price<S: Into<BigDecimal>>(&mut self, paid_price: S)[src]

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

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

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

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

pub fn set_buyer(&mut self, buyer: Buyer)[src]

pub fn set_shipping_address(&mut self, shipping_address: Address)[src]

pub fn set_billing_address(&mut self, billing_address: Address)[src]

pub fn set_basket_items(&mut self, basket_items: Vec<BasketItem>)[src]

pub fn set_callback_url<S: Into<String>>(&mut self, callback_url: 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 CreatePeccoInitializeRequest[src]

impl Default for CreatePeccoInitializeRequest[src]

impl Deref for CreatePeccoInitializeRequest[src]

type Target = Request

The resulting type after dereferencing.

impl DerefMut for CreatePeccoInitializeRequest[src]

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

impl PKISerialize for CreatePeccoInitializeRequest[src]

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