pub struct OutputCustomEvent {
pub _id: String,
pub _type: String,
pub _created_by: String,
pub _created_at: i64,
pub _updated_by: Option<Option<String>>,
pub _updated_at: Option<Option<i64>>,
pub date: i64,
pub end_date: Option<Option<i64>>,
pub title: String,
pub description: Option<Option<String>>,
}Fields§
§_id: String§_type: String§_created_by: String§_created_at: i64§_updated_by: Option<Option<String>>§_updated_at: Option<Option<i64>>§date: i64§end_date: Option<Option<i64>>§title: String§description: Option<Option<String>>Implementations§
Trait Implementations§
Source§impl Clone for OutputCustomEvent
impl Clone for OutputCustomEvent
Source§fn clone(&self) -> OutputCustomEvent
fn clone(&self) -> OutputCustomEvent
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 OutputCustomEvent
impl Debug for OutputCustomEvent
Source§impl Default for OutputCustomEvent
impl Default for OutputCustomEvent
Source§fn default() -> OutputCustomEvent
fn default() -> OutputCustomEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutputCustomEvent
impl<'de> Deserialize<'de> for OutputCustomEvent
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 OutputCustomEvent
impl PartialEq for OutputCustomEvent
Source§impl Serialize for OutputCustomEvent
impl Serialize for OutputCustomEvent
impl StructuralPartialEq for OutputCustomEvent
Auto Trait Implementations§
impl Freeze for OutputCustomEvent
impl RefUnwindSafe for OutputCustomEvent
impl Send for OutputCustomEvent
impl Sync for OutputCustomEvent
impl Unpin for OutputCustomEvent
impl UnwindSafe for OutputCustomEvent
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