pub struct CardList { /* private fields */ }Implementations§
Source§impl CardList
impl CardList
pub fn retrieve( req: &RetrieveCardListRequest, options: &Options, ) -> Result<CardList, Box<dyn Error>>
pub fn set_card_user_key<T: Into<String>>(&mut self, card_user_key: T)
pub fn set_card_details<T: Into<Vec<Card>>>(&mut self, card_details: T)
pub fn card_user_key(&self) -> Option<&String>
pub fn card_details(&self) -> Option<&Vec<Card>>
Methods from Deref<Target = IyzipayResource>§
pub fn status(&self) -> Option<&String>
pub fn error_code(&self) -> Option<&String>
pub fn error_message(&self) -> Option<&String>
pub fn error_group(&self) -> Option<&String>
pub fn locale(&self) -> Option<&String>
pub fn system_time(&self) -> Option<&i64>
pub fn conversation_id(&self) -> Option<&String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CardList
impl<'de> Deserialize<'de> for CardList
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CardList
impl RefUnwindSafe for CardList
impl Send for CardList
impl Sync for CardList
impl Unpin for CardList
impl UnsafeUnpin for CardList
impl UnwindSafe for CardList
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more