pub struct Recurrence {
pub end_date_time: Option<DateTime<Utc>>,
pub end_times: i64,
pub monthly_day: i64,
pub monthly_week: i64,
pub monthly_week_day: i64,
pub repeat_interval: i64,
pub type_: i64,
pub weekly_days: Option<WeeklyDays>,
}
Expand description
Recurrence object. Use this object only for a meeting with type 8
i.e., a recurring meeting with fixed time.
Fields§
§end_date_time: Option<DateTime<Utc>>
Recurrence object. Use this object only for a meeting with type 8
i.e., a recurring meeting with fixed time.
end_times: i64
Recurrence object. Use this object only for a meeting with type 8
i.e., a recurring meeting with fixed time.
monthly_day: i64
Recurrence object. Use this object only for a meeting with type 8
i.e., a recurring meeting with fixed time.
monthly_week: i64
Recurrence object. Use this object only for a meeting with type 8
i.e., a recurring meeting with fixed time.
monthly_week_day: i64
Recurrence object. Use this object only for a meeting with type 8
i.e., a recurring meeting with fixed time.
repeat_interval: i64
Recurrence object. Use this object only for a meeting with type 8
i.e., a recurring meeting with fixed time.
type_: i64
Account seats.
weekly_days: Option<WeeklyDays>
Recurrence object. Use this object only for a meeting with type 8
i.e., a recurring meeting with fixed time.
Trait Implementations§
Source§impl Clone for Recurrence
impl Clone for Recurrence
Source§fn clone(&self) -> Recurrence
fn clone(&self) -> Recurrence
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for Recurrence
impl Debug for Recurrence
Source§impl<'de> Deserialize<'de> for Recurrence
impl<'de> Deserialize<'de> for Recurrence
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>,
Source§impl JsonSchema for Recurrence
impl JsonSchema for Recurrence
Source§fn schema_name() -> String
fn schema_name() -> String
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read more