pub struct AppointmentTimeInput {
pub start_time: String,
pub duration_in_minutes: Option<i32>,
}Expand description
AppointmentTimeInput : The input appointment time details.
Fields§
§start_time: StringThe date, time in UTC for the start time of an appointment in ISO 8601 format.
duration_in_minutes: Option<i32>The duration of an appointment in minutes.
Implementations§
Source§impl AppointmentTimeInput
impl AppointmentTimeInput
Sourcepub fn new(start_time: String) -> AppointmentTimeInput
pub fn new(start_time: String) -> AppointmentTimeInput
The input appointment time details.
Trait Implementations§
Source§impl Clone for AppointmentTimeInput
impl Clone for AppointmentTimeInput
Source§fn clone(&self) -> AppointmentTimeInput
fn clone(&self) -> AppointmentTimeInput
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 AppointmentTimeInput
impl Debug for AppointmentTimeInput
Source§impl Default for AppointmentTimeInput
impl Default for AppointmentTimeInput
Source§fn default() -> AppointmentTimeInput
fn default() -> AppointmentTimeInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AppointmentTimeInput
impl<'de> Deserialize<'de> for AppointmentTimeInput
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 AppointmentTimeInput
impl PartialEq for AppointmentTimeInput
Source§impl Serialize for AppointmentTimeInput
impl Serialize for AppointmentTimeInput
impl StructuralPartialEq for AppointmentTimeInput
Auto Trait Implementations§
impl Freeze for AppointmentTimeInput
impl RefUnwindSafe for AppointmentTimeInput
impl Send for AppointmentTimeInput
impl Sync for AppointmentTimeInput
impl Unpin for AppointmentTimeInput
impl UnwindSafe for AppointmentTimeInput
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