pub struct CreateEventParams {Show 13 fields
pub calendar_id: String,
pub location_id: String,
pub contact_id: String,
pub start_time: String,
pub end_time: String,
pub title: Option<String>,
pub appointment_status: Option<String>,
pub assigned_user_id: Option<String>,
pub address: Option<String>,
pub notes: Option<String>,
pub timezone: Option<String>,
pub ignore_date_range: Option<bool>,
pub to_notify: Option<bool>,
}Fields§
§calendar_id: String§location_id: String§contact_id: String§start_time: String§end_time: String§title: Option<String>§appointment_status: Option<String>§assigned_user_id: Option<String>§address: Option<String>§notes: Option<String>§timezone: Option<String>§ignore_date_range: Option<bool>§to_notify: Option<bool>Trait Implementations§
Source§impl Clone for CreateEventParams
impl Clone for CreateEventParams
Source§fn clone(&self) -> CreateEventParams
fn clone(&self) -> CreateEventParams
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 CreateEventParams
impl Debug for CreateEventParams
Source§impl Default for CreateEventParams
impl Default for CreateEventParams
Source§fn default() -> CreateEventParams
fn default() -> CreateEventParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateEventParams
impl<'de> Deserialize<'de> for CreateEventParams
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 CreateEventParams
impl RefUnwindSafe for CreateEventParams
impl Send for CreateEventParams
impl Sync for CreateEventParams
impl Unpin for CreateEventParams
impl UnsafeUnpin for CreateEventParams
impl UnwindSafe for CreateEventParams
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