Enum zoom_api::types::WeeklyDays
source · pub enum WeeklyDays {
One,
Two,
Three,
Four,
Five,
Six,
Seven,
FallthroughString,
}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
One
Two
Three
Four
Five
Six
Seven
FallthroughString
Trait Implementations
sourceimpl Clone for WeeklyDays
impl Clone for WeeklyDays
sourcefn clone(&self) -> WeeklyDays
fn clone(&self) -> WeeklyDays
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for WeeklyDays
impl Debug for WeeklyDays
sourceimpl Default for WeeklyDays
impl Default for WeeklyDays
sourcefn default() -> WeeklyDays
fn default() -> WeeklyDays
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for WeeklyDays
impl<'de> Deserialize<'de> for WeeklyDays
sourcefn 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
sourceimpl Display for WeeklyDays
impl Display for WeeklyDays
sourceimpl JsonSchema for WeeklyDays
impl JsonSchema for WeeklyDays
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moresourceimpl PartialEq<WeeklyDays> for WeeklyDays
impl PartialEq<WeeklyDays> for WeeklyDays
sourcefn eq(&self, other: &WeeklyDays) -> bool
fn eq(&self, other: &WeeklyDays) -> bool
sourceimpl Serialize for WeeklyDays
impl Serialize for WeeklyDays
impl StructuralPartialEq for WeeklyDays
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more