pub struct EventCreator {
pub id: String,
pub creator_name: Option<String>,
pub creator_handle: Option<String>,
pub creator_url: Option<String>,
pub creator_image: Option<String>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
}Expand description
Event creator metadata returned from /events/creators* endpoints.
Fields§
§id: String§creator_name: Option<String>§creator_handle: Option<String>§creator_url: Option<String>§creator_image: Option<String>§created_at: Option<String>§updated_at: Option<String>Trait Implementations§
Source§impl Clone for EventCreator
impl Clone for EventCreator
Source§fn clone(&self) -> EventCreator
fn clone(&self) -> EventCreator
Returns a duplicate of the value. Read more
1.0.0 · 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 EventCreator
impl Debug for EventCreator
Source§impl<'de> Deserialize<'de> for EventCreator
impl<'de> Deserialize<'de> for EventCreator
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 EventCreator
impl PartialEq for EventCreator
Source§impl Serialize for EventCreator
impl Serialize for EventCreator
impl StructuralPartialEq for EventCreator
Auto Trait Implementations§
impl Freeze for EventCreator
impl RefUnwindSafe for EventCreator
impl Send for EventCreator
impl Sync for EventCreator
impl Unpin for EventCreator
impl UnsafeUnpin for EventCreator
impl UnwindSafe for EventCreator
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