[][src]Struct iyzipay_rust::model::CardList

pub struct CardList { /* fields omitted */ }

Implementations

impl CardList[src]

pub fn retrieve(
    req: &RetrieveCardListRequest,
    options: &Options
) -> Result<CardList, Box<dyn Error>>
[src]

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

pub fn set_card_details<T: Into<Vec<Card>>>(&mut self, card_details: T)[src]

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

pub fn card_details(&self) -> Option<&Vec<Card>>[src]

Methods from Deref<Target = IyzipayResource>

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

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

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

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

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

pub fn system_time(&self) -> Option<&i64>[src]

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

Trait Implementations

impl Debug for CardList[src]

impl Default for CardList[src]

impl Deref for CardList[src]

type Target = IyzipayResource

The resulting type after dereferencing.

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

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