pub struct BuyerRequestedCancel {
pub is_buyer_requested_cancel: Option<bool>,
pub buyer_cancel_reason: Option<String>,
}Expand description
BuyerRequestedCancel : Information about whether or not a buyer requested cancellation.
Fields
is_buyer_requested_cancel: Option<bool>When true, the buyer has requested cancellation.
buyer_cancel_reason: Option<String>The reason that the buyer requested cancellation.
Implementations
sourceimpl BuyerRequestedCancel
impl BuyerRequestedCancel
sourcepub fn new() -> BuyerRequestedCancel
pub fn new() -> BuyerRequestedCancel
Information about whether or not a buyer requested cancellation.
Trait Implementations
sourceimpl Clone for BuyerRequestedCancel
impl Clone for BuyerRequestedCancel
sourcefn clone(&self) -> BuyerRequestedCancel
fn clone(&self) -> BuyerRequestedCancel
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for BuyerRequestedCancel
impl Debug for BuyerRequestedCancel
sourceimpl Default for BuyerRequestedCancel
impl Default for BuyerRequestedCancel
sourcefn default() -> BuyerRequestedCancel
fn default() -> BuyerRequestedCancel
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for BuyerRequestedCancel
impl<'de> Deserialize<'de> for BuyerRequestedCancel
sourcefn 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
sourceimpl PartialEq<BuyerRequestedCancel> for BuyerRequestedCancel
impl PartialEq<BuyerRequestedCancel> for BuyerRequestedCancel
sourcefn eq(&self, other: &BuyerRequestedCancel) -> bool
fn eq(&self, other: &BuyerRequestedCancel) -> bool
sourceimpl Serialize for BuyerRequestedCancel
impl Serialize for BuyerRequestedCancel
impl StructuralPartialEq for BuyerRequestedCancel
Auto Trait Implementations
impl RefUnwindSafe for BuyerRequestedCancel
impl Send for BuyerRequestedCancel
impl Sync for BuyerRequestedCancel
impl Unpin for BuyerRequestedCancel
impl UnwindSafe for BuyerRequestedCancel
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more