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