Struct zoom_api::types::Occurrence
source · pub struct Occurrence {
pub duration: i64,
pub occurrence_id: String,
pub start_time: Option<DateTime<Utc>>,
pub status: String,
}Expand description
Occurence object. This object is only returned for Recurring Webinars.
Fields
duration: i64Occurence object. This object is only returned for Recurring Webinars.
occurrence_id: StringOccurence object. This object is only returned for Recurring Webinars.
start_time: Option<DateTime<Utc>>Occurence object. This object is only returned for Recurring Webinars.
status: StringOccurence object. This object is only returned for Recurring Webinars.
Trait Implementations
sourceimpl Clone for Occurrence
impl Clone for Occurrence
sourcefn clone(&self) -> Occurrence
fn clone(&self) -> Occurrence
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 Occurrence
impl Debug for Occurrence
sourceimpl<'de> Deserialize<'de> for Occurrence
impl<'de> Deserialize<'de> for Occurrence
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 JsonSchema for Occurrence
impl JsonSchema for Occurrence
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<Occurrence> for Occurrence
impl PartialEq<Occurrence> for Occurrence
sourcefn eq(&self, other: &Occurrence) -> bool
fn eq(&self, other: &Occurrence) -> bool
sourceimpl Serialize for Occurrence
impl Serialize for Occurrence
impl StructuralPartialEq for Occurrence
Auto Trait Implementations
impl RefUnwindSafe for Occurrence
impl Send for Occurrence
impl Sync for Occurrence
impl Unpin for Occurrence
impl UnwindSafe for Occurrence
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