pub struct InviteScheduleSnapshot {
pub active_window: Option<InviteWindow>,
pub is_recurring: bool,
pub next_window: Option<InviteWindow>,
pub series_end: Option<InviteRecurrenceSeriesEnd>,
pub slot_duration_seconds: i64,
}Expand description
InviteScheduleSnapshot
JSON schema
{
"type": "object",
"required": [
"is_recurring",
"slot_duration_seconds"
],
"properties": {
"active_window": {
"oneOf": [
{
"type": "null"
},
{
"oneOf": [
{
"$ref": "#/components/schemas/InviteWindow"
}
]
}
]
},
"is_recurring": {
"type": "boolean"
},
"next_window": {
"oneOf": [
{
"type": "null"
},
{
"oneOf": [
{
"$ref": "#/components/schemas/InviteWindow"
}
]
}
]
},
"series_end": {
"oneOf": [
{
"type": "null"
},
{
"oneOf": [
{
"$ref": "#/components/schemas/InviteRecurrenceSeriesEnd"
}
]
}
]
},
"slot_duration_seconds": {
"type": "integer",
"format": "int64"
}
}
}Fields§
§active_window: Option<InviteWindow>§is_recurring: bool§next_window: Option<InviteWindow>§series_end: Option<InviteRecurrenceSeriesEnd>§slot_duration_seconds: i64Trait Implementations§
Source§impl Clone for InviteScheduleSnapshot
impl Clone for InviteScheduleSnapshot
Source§fn clone(&self) -> InviteScheduleSnapshot
fn clone(&self) -> InviteScheduleSnapshot
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 InviteScheduleSnapshot
impl Debug for InviteScheduleSnapshot
Source§impl<'de> Deserialize<'de> for InviteScheduleSnapshot
impl<'de> Deserialize<'de> for InviteScheduleSnapshot
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 InviteScheduleSnapshot
impl RefUnwindSafe for InviteScheduleSnapshot
impl Send for InviteScheduleSnapshot
impl Sync for InviteScheduleSnapshot
impl Unpin for InviteScheduleSnapshot
impl UnsafeUnpin for InviteScheduleSnapshot
impl UnwindSafe for InviteScheduleSnapshot
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