[][src]Struct iyzipay_rust::requests::IyziLinkSaveRequest

pub struct IyziLinkSaveRequest { /* fields omitted */ }

Implementations

impl IyziLinkSaveRequest[src]

pub fn new() -> Self[src]

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

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

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

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

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

pub fn set_address_ignorable<T: Into<bool>>(&mut self, address_ignorable: T)[src]

pub fn set_sold_limit<T: Into<u8>>(&mut self, sold_limit: T)[src]

pub fn set_installment_requested<T: Into<bool>>(
    &mut self,
    installment_requested: T
)
[src]

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

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

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

pub fn price(&self) -> Option<&BigDecimal>[src]

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

pub fn address_ignorable(&self) -> Option<&bool>[src]

pub fn sold_limit(&self) -> Option<&u8>[src]

pub fn installment_requested(&self) -> Option<&bool>[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 IyziLinkSaveRequest[src]

impl Default for IyziLinkSaveRequest[src]

impl Deref for IyziLinkSaveRequest[src]

type Target = Request

The resulting type after dereferencing.

impl DerefMut for IyziLinkSaveRequest[src]

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

impl PKISerialize for IyziLinkSaveRequest[src]

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