pub struct AppointmentSegment {
pub duration_minutes: f64,
pub team_member_id: String,
pub any_team_member_id: Option<String>,
pub intermission_minutes: Option<i32>,
pub resource_ids: Option<String>,
pub service_variation_id: String,
pub service_variation_version: i64,
}Fields§
§duration_minutes: f64§team_member_id: String§any_team_member_id: Option<String>§intermission_minutes: Option<i32>§resource_ids: Option<String>§service_variation_id: String§service_variation_version: i64Trait Implementations§
Source§impl AddField<AppointmentSegment> for Booking
impl AddField<AppointmentSegment> for Booking
fn add_field(&mut self, field: AppointmentSegment)
Source§impl Clone for AppointmentSegment
impl Clone for AppointmentSegment
Source§fn clone(&self) -> AppointmentSegment
fn clone(&self) -> AppointmentSegment
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 AppointmentSegment
impl Debug for AppointmentSegment
Source§impl Default for AppointmentSegment
impl Default for AppointmentSegment
Source§fn default() -> AppointmentSegment
fn default() -> AppointmentSegment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AppointmentSegment
impl<'de> Deserialize<'de> for AppointmentSegment
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 Serialize for AppointmentSegment
impl Serialize for AppointmentSegment
Source§impl Validate for AppointmentSegment
impl Validate for AppointmentSegment
Auto Trait Implementations§
impl Freeze for AppointmentSegment
impl RefUnwindSafe for AppointmentSegment
impl Send for AppointmentSegment
impl Sync for AppointmentSegment
impl Unpin for AppointmentSegment
impl UnwindSafe for AppointmentSegment
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