pub struct CalendarEvent {
pub id: String,
pub location_id: String,
pub calendar_id: Option<String>,
pub contact_id: String,
pub title: Option<String>,
pub start_time: String,
pub end_time: String,
pub status: Option<String>,
pub appointment_status: Option<String>,
pub assigned_user_id: Option<String>,
pub address: Option<String>,
pub notes: Option<String>,
}Fields§
§id: String§location_id: String§calendar_id: Option<String>§contact_id: String§title: Option<String>§start_time: String§end_time: String§status: Option<String>§appointment_status: Option<String>§assigned_user_id: Option<String>§address: Option<String>§notes: Option<String>Trait Implementations§
Source§impl Clone for CalendarEvent
impl Clone for CalendarEvent
Source§fn clone(&self) -> CalendarEvent
fn clone(&self) -> CalendarEvent
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 CalendarEvent
impl Debug for CalendarEvent
Source§impl<'de> Deserialize<'de> for CalendarEvent
impl<'de> Deserialize<'de> for CalendarEvent
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 CalendarEvent
impl RefUnwindSafe for CalendarEvent
impl Send for CalendarEvent
impl Sync for CalendarEvent
impl Unpin for CalendarEvent
impl UnsafeUnpin for CalendarEvent
impl UnwindSafe for CalendarEvent
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