pub struct IyziupForm { /* private fields */ }Implementations§
Source§impl IyziupForm
impl IyziupForm
pub fn retrieve( req: &RetrieveIyziupFormRequest, options: &Options, ) -> Result<IyziupForm, Box<dyn Error>>
pub fn set_order_response_status<T: Into<String>>( &mut self, order_response_status: T, )
pub fn set_token<T: Into<String>>(&mut self, token: T)
pub fn set_callback_url<T: Into<String>>(&mut self, callback_url: T)
pub fn set_consumer<T: Into<Consumer>>(&mut self, consumer: T)
pub fn set_shipping_address<T: Into<Address>>(&mut self, shipping_address: T)
pub fn set_billing_address<T: Into<Address>>(&mut self, billing_address: T)
pub fn set_payment_detail<T: Into<IyziupPayment>>(&mut self, payment_detail: T)
pub fn order_response_status(&self) -> Option<&String>
pub fn token(&self) -> Option<&String>
pub fn callback_url(&self) -> Option<&String>
pub fn consumer(&self) -> Option<&Consumer>
pub fn shipping_address(&self) -> Option<&Address>
pub fn billing_address(&self) -> Option<&Address>
pub fn payment_detail(&self) -> Option<&IyziupPayment>
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 Debug for IyziupForm
impl Debug for IyziupForm
Source§impl Default for IyziupForm
impl Default for IyziupForm
Source§fn default() -> IyziupForm
fn default() -> IyziupForm
Returns the “default value” for a type. Read more
Source§impl Deref for IyziupForm
impl Deref for IyziupForm
Source§impl<'de> Deserialize<'de> for IyziupFormwhere
IyziupForm: Default,
impl<'de> Deserialize<'de> for IyziupFormwhere
IyziupForm: Default,
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 IyziupForm
impl RefUnwindSafe for IyziupForm
impl Send for IyziupForm
impl Sync for IyziupForm
impl Unpin for IyziupForm
impl UnwindSafe for IyziupForm
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