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: String
Zoom room.
calender_name: String
Zoom room.
camera: String
Zoom room.
device_ip: String
Zoom room.
email: String
Zoom room.
health: String
Zoom room.
id: String
Zoom room.
issues: Vec<String>
Zoom room.
last_start_time: String
Zoom room.
location: String
Zoom room.
microphone: String
Zoom room.
room_name: String
Zoom room.
speaker: String
Zoom room.
status: String
Zoom room.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ZoomRoom
impl<'de> Deserialize<'de> for ZoomRoom
Source§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
Source§impl JsonSchema for ZoomRoom
impl JsonSchema for ZoomRoom
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn 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 Freeze for ZoomRoom
impl RefUnwindSafe for ZoomRoom
impl Send for ZoomRoom
impl Sync for ZoomRoom
impl Unpin for ZoomRoom
impl UnwindSafe for ZoomRoom
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more