Enum zoom_api::types::WeeklyDays [−][src]
pub enum WeeklyDays {
One,
Two,
Three,
Four,
Five,
Six,
Seven,
FallthroughString(String),
}Expand description
This field is required if you’re scheduling a recurring meeting of type 2 to state which day(s) of the week the meeting should repeat.
The value for this field could be a number between 1 to 7 in string format. For instance, if the meeting should recur on Sunday, provide "1" as the value of this field.
Note: If you would like the meeting to occur on multiple days of a week, you should provide comma separated values for this field. For instance, if the meeting should recur on Sundays and Tuesdays provide "1,3" as the value of this field.
1 - Sunday. 2 - Monday.3 - Tuesday.4 - Wednesday.5 - Thursday.6 - Friday.7 - Saturday.
Variants
Tuple Fields of FallthroughString
0: StringTrait Implementations
Returns the “default value” for a type. Read more
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 RefUnwindSafe for WeeklyDays
impl Send for WeeklyDays
impl Sync for WeeklyDays
impl Unpin for WeeklyDays
impl UnwindSafe for WeeklyDays
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more