Struct zoom_api::types::AddRoomRequest
source · pub struct AddRoomRequest {
pub location_id: String,
pub name: String,
pub type_: ListZoomRoomsType,
}Fields
location_id: StringUser’s first name.
name: StringUser’s first name.
type_: ListZoomRoomsTypeType of the Zoom Rooms.
Trait Implementations
sourceimpl Clone for AddRoomRequest
impl Clone for AddRoomRequest
sourcefn clone(&self) -> AddRoomRequest
fn clone(&self) -> AddRoomRequest
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 AddRoomRequest
impl Debug for AddRoomRequest
sourceimpl<'de> Deserialize<'de> for AddRoomRequest
impl<'de> Deserialize<'de> for AddRoomRequest
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 AddRoomRequest
impl JsonSchema for AddRoomRequest
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<AddRoomRequest> for AddRoomRequest
impl PartialEq<AddRoomRequest> for AddRoomRequest
sourcefn eq(&self, other: &AddRoomRequest) -> bool
fn eq(&self, other: &AddRoomRequest) -> bool
sourceimpl Serialize for AddRoomRequest
impl Serialize for AddRoomRequest
impl StructuralPartialEq for AddRoomRequest
Auto Trait Implementations
impl RefUnwindSafe for AddRoomRequest
impl Send for AddRoomRequest
impl Sync for AddRoomRequest
impl Unpin for AddRoomRequest
impl UnwindSafe for AddRoomRequest
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