[][src]Struct razorpay::models::Card

pub struct Card { /* fields omitted */ }

Implementations

impl Card[src]

pub fn id(&self) -> &String[src]

pub fn entity(&self) -> &String[src]

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

pub fn last4(&self) -> &String[src]

pub fn network(&self) -> &String[src]

pub fn card_type(&self) -> &String[src]

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

pub fn international(&self) -> &bool[src]

pub fn emi(&self) -> &bool[src]

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

impl Card[src]

pub fn set_id(&mut self, val: String) -> &mut Self[src]

pub fn set_entity(&mut self, val: String) -> &mut Self[src]

pub fn set_name(&mut self, val: String) -> &mut Self[src]

pub fn set_last4(&mut self, val: String) -> &mut Self[src]

pub fn set_network(&mut self, val: String) -> &mut Self[src]

pub fn set_card_type(&mut self, val: String) -> &mut Self[src]

pub fn set_issuer(&mut self, val: Option<String>) -> &mut Self[src]

pub fn set_international(&mut self, val: bool) -> &mut Self[src]

pub fn set_emi(&mut self, val: bool) -> &mut Self[src]

pub fn set_sub_type(&mut self, val: Option<String>) -> &mut Self[src]

Trait Implementations

impl Clone for Card[src]

impl Debug for Card[src]

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

impl Serialize for Card[src]

Auto Trait Implementations

impl RefUnwindSafe for Card

impl Send for Card

impl Sync for Card

impl Unpin for Card

impl UnwindSafe for Card

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.