Struct zoom_api::types::ReportWebinarQaResponse
source · pub struct ReportWebinarQaResponse {
pub id: i64,
pub questions: Vec<ReportWebinarQaResponseQuestions>,
pub start_time: Option<DateTime<Utc>>,
pub uuid: String,
}Fields
id: i64Account seats.
questions: Vec<ReportWebinarQaResponseQuestions>Array of webinar question objects.
start_time: Option<DateTime<Utc>>Account subscription start date and time.
uuid: StringUser’s first name.
Trait Implementations
sourceimpl Clone for ReportWebinarQaResponse
impl Clone for ReportWebinarQaResponse
sourcefn clone(&self) -> ReportWebinarQaResponse
fn clone(&self) -> ReportWebinarQaResponse
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 ReportWebinarQaResponse
impl Debug for ReportWebinarQaResponse
sourceimpl<'de> Deserialize<'de> for ReportWebinarQaResponse
impl<'de> Deserialize<'de> for ReportWebinarQaResponse
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 ReportWebinarQaResponse
impl JsonSchema for ReportWebinarQaResponse
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<ReportWebinarQaResponse> for ReportWebinarQaResponse
impl PartialEq<ReportWebinarQaResponse> for ReportWebinarQaResponse
sourcefn eq(&self, other: &ReportWebinarQaResponse) -> bool
fn eq(&self, other: &ReportWebinarQaResponse) -> bool
sourceimpl Serialize for ReportWebinarQaResponse
impl Serialize for ReportWebinarQaResponse
impl StructuralPartialEq for ReportWebinarQaResponse
Auto Trait Implementations
impl RefUnwindSafe for ReportWebinarQaResponse
impl Send for ReportWebinarQaResponse
impl Sync for ReportWebinarQaResponse
impl Unpin for ReportWebinarQaResponse
impl UnwindSafe for ReportWebinarQaResponse
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