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

pub struct CardList { /* fields omitted */ }

Methods

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 Default for CardList[src]

impl Debug for CardList[src]

impl Deref for CardList[src]

type Target = IyzipayResource

The resulting type after dereferencing.

impl Serialize for CardList[src]

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

Auto Trait Implementations

impl Send for CardList

impl Sync for CardList

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto 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<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Erased for T