pub struct GiftCardUpdatedEventObject {
pub gift_card: Option<Box<GiftCard>>,
}Expand description
GiftCardUpdatedEventObject : An object that contains the gift card associated with a gift_card.updated event.
Fields§
§gift_card: Option<Box<GiftCard>>Implementations§
Source§impl GiftCardUpdatedEventObject
impl GiftCardUpdatedEventObject
Sourcepub fn new() -> GiftCardUpdatedEventObject
pub fn new() -> GiftCardUpdatedEventObject
An object that contains the gift card associated with a gift_card.updated event.
Trait Implementations§
Source§impl Clone for GiftCardUpdatedEventObject
impl Clone for GiftCardUpdatedEventObject
Source§fn clone(&self) -> GiftCardUpdatedEventObject
fn clone(&self) -> GiftCardUpdatedEventObject
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GiftCardUpdatedEventObject
impl Debug for GiftCardUpdatedEventObject
Source§impl Default for GiftCardUpdatedEventObject
impl Default for GiftCardUpdatedEventObject
Source§fn default() -> GiftCardUpdatedEventObject
fn default() -> GiftCardUpdatedEventObject
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GiftCardUpdatedEventObject
impl<'de> Deserialize<'de> for GiftCardUpdatedEventObject
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
impl StructuralPartialEq for GiftCardUpdatedEventObject
Auto Trait Implementations§
impl Freeze for GiftCardUpdatedEventObject
impl RefUnwindSafe for GiftCardUpdatedEventObject
impl Send for GiftCardUpdatedEventObject
impl Sync for GiftCardUpdatedEventObject
impl Unpin for GiftCardUpdatedEventObject
impl UnsafeUnpin for GiftCardUpdatedEventObject
impl UnwindSafe for GiftCardUpdatedEventObject
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