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