[][src]Struct iyzipay_rust::model::Bkm

pub struct Bkm { /* fields omitted */ }

Methods

impl Bkm[src]

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

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

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

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

pub fn callback_url(&self) -> Option<&String>[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 Bkm[src]

impl Debug for Bkm[src]

impl Deref for Bkm[src]

type Target = IyzipayResource

The resulting type after dereferencing.

impl Serialize for Bkm[src]

impl<'de> Deserialize<'de> for Bkm where
    Bkm: Default
[src]

Auto Trait Implementations

impl Send for Bkm

impl Sync for Bkm

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