pub struct UsEvent {
pub id: String,
pub slug: String,
pub title: String,
pub description: Option<String>,
pub category: String,
pub start_date: Option<String>,
pub end_date: Option<String>,
pub extra: HashMap<String, Value>,
}Fields§
§id: String§slug: String§title: String§description: Option<String>§category: String§start_date: Option<String>§end_date: Option<String>§extra: HashMap<String, Value>Trait Implementations§
Source§impl<'de> Deserialize<'de> for UsEvent
impl<'de> Deserialize<'de> for UsEvent
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
Auto Trait Implementations§
impl Freeze for UsEvent
impl RefUnwindSafe for UsEvent
impl Send for UsEvent
impl Sync for UsEvent
impl Unpin for UsEvent
impl UnsafeUnpin for UsEvent
impl UnwindSafe for UsEvent
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