pub struct Checkout {
pub id: String,
pub ask_for_shipping_address: Option<bool>,
pub checkout_page_url: Option<String>,
pub created_at: Option<String>,
pub merchant_support_email: Option<String>,
pub order: Option<Order>,
pub pre_populate_buyer_email: Option<String>,
pub pre_populate_shipping_address: Option<Address>,
pub redirect_url: Option<String>,
}Fields§
§id: String§ask_for_shipping_address: Option<bool>§checkout_page_url: Option<String>§created_at: Option<String>§merchant_support_email: Option<String>§order: Option<Order>§pre_populate_buyer_email: Option<String>§pre_populate_shipping_address: Option<Address>§redirect_url: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Checkout
impl<'de> Deserialize<'de> for Checkout
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 Checkout
impl RefUnwindSafe for Checkout
impl Send for Checkout
impl Sync for Checkout
impl Unpin for Checkout
impl UnwindSafe for Checkout
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