pub struct BookingUpdatedEventData {
pub type: Option<Option<String>>,
pub id: Option<String>,
pub object: Option<Box<BookingUpdatedEventObject>>,
}Fields§
§type: Option<Option<String>>The type of the event data object. The value is \"booking\".
id: Option<String>The ID of the event data object.
object: Option<Box<BookingUpdatedEventObject>>Implementations§
Source§impl BookingUpdatedEventData
impl BookingUpdatedEventData
pub fn new() -> BookingUpdatedEventData
Trait Implementations§
Source§impl Clone for BookingUpdatedEventData
impl Clone for BookingUpdatedEventData
Source§fn clone(&self) -> BookingUpdatedEventData
fn clone(&self) -> BookingUpdatedEventData
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 BookingUpdatedEventData
impl Debug for BookingUpdatedEventData
Source§impl Default for BookingUpdatedEventData
impl Default for BookingUpdatedEventData
Source§fn default() -> BookingUpdatedEventData
fn default() -> BookingUpdatedEventData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BookingUpdatedEventData
impl<'de> Deserialize<'de> for BookingUpdatedEventData
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
Source§impl PartialEq for BookingUpdatedEventData
impl PartialEq for BookingUpdatedEventData
Source§impl Serialize for BookingUpdatedEventData
impl Serialize for BookingUpdatedEventData
impl StructuralPartialEq for BookingUpdatedEventData
Auto Trait Implementations§
impl Freeze for BookingUpdatedEventData
impl RefUnwindSafe for BookingUpdatedEventData
impl Send for BookingUpdatedEventData
impl Sync for BookingUpdatedEventData
impl Unpin for BookingUpdatedEventData
impl UnsafeUnpin for BookingUpdatedEventData
impl UnwindSafe for BookingUpdatedEventData
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