pub struct Calendar {Show 14 fields
pub id: String,
pub location_id: String,
pub name: String,
pub description: Option<String>,
pub slug: Option<String>,
pub group_id: Option<String>,
pub event_type: Option<String>,
pub event_title: Option<String>,
pub slot_duration: Option<u32>,
pub slot_buffer: Option<u32>,
pub pre_buffer_unit: Option<String>,
pub appointment_per_slot: Option<u32>,
pub appointment_per_day: Option<u32>,
pub is_active: Option<bool>,
}Fields§
§id: String§location_id: String§name: String§description: Option<String>§slug: Option<String>§group_id: Option<String>§event_type: Option<String>§event_title: Option<String>§slot_duration: Option<u32>§slot_buffer: Option<u32>§pre_buffer_unit: Option<String>§appointment_per_slot: Option<u32>§appointment_per_day: Option<u32>§is_active: Option<bool>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Calendar
impl<'de> Deserialize<'de> for Calendar
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 Calendar
impl RefUnwindSafe for Calendar
impl Send for Calendar
impl Sync for Calendar
impl Unpin for Calendar
impl UnsafeUnpin for Calendar
impl UnwindSafe for Calendar
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