pub struct ZoomRoom {Show 14 fields
pub account_type: String,
pub calender_name: String,
pub camera: String,
pub device_ip: String,
pub email: String,
pub health: String,
pub id: String,
pub issues: Vec<String>,
pub last_start_time: String,
pub location: String,
pub microphone: String,
pub room_name: String,
pub speaker: String,
pub status: String,
}Expand description
Zoom room.
Fields
account_type: StringZoom room.
calender_name: StringZoom room.
camera: StringZoom room.
device_ip: StringZoom room.
email: StringZoom room.
health: StringZoom room.
id: StringZoom room.
issues: Vec<String>Zoom room.
last_start_time: StringZoom room.
location: StringZoom room.
microphone: StringZoom room.
room_name: StringZoom room.
speaker: StringZoom room.
status: StringZoom room.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for ZoomRoom
impl<'de> Deserialize<'de> for ZoomRoom
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 ZoomRoom
impl JsonSchema for ZoomRoom
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 moreimpl StructuralPartialEq for ZoomRoom
Auto Trait Implementations
impl RefUnwindSafe for ZoomRoom
impl Send for ZoomRoom
impl Sync for ZoomRoom
impl Unpin for ZoomRoom
impl UnwindSafe for ZoomRoom
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