[][src]Struct cio_api::ResourceConfig

pub struct ResourceConfig {
    pub name: String,
    pub description: String,
    pub typev: String,
    pub building: String,
    pub capacity: i32,
    pub floor: String,
    pub section: String,
    pub is_zoom_room: Option<bool>,
}

The data type for a resource. These are conference rooms that people can book through GSuite or Zoom.

Fields

name: Stringdescription: Stringtypev: Stringbuilding: Stringcapacity: i32floor: Stringsection: Stringis_zoom_room: Option<bool>

Trait Implementations

impl Clone for ResourceConfig[src]

impl Debug for ResourceConfig[src]

impl<'de> Deserialize<'de> for ResourceConfig[src]

impl Serialize for ResourceConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.