pub struct Resource {
pub disabled_date: Option<f64>,
pub email: Option<String>,
pub enabled_date: Option<f64>,
pub id: Option<String>,
pub name: Option<String>,
pub state: Option<String>,
pub type_: Option<String>,
}Expand description
The representation of a resource.
Fields§
§disabled_date: Option<f64>The date indicating when the resource was disabled from Amazon WorkMail use.
email: Option<String>The email of the resource.
enabled_date: Option<f64>The date indicating when the resource was enabled for Amazon WorkMail use.
id: Option<String>The identifier of the resource.
name: Option<String>The name of the resource.
state: Option<String>The state of the resource, which can be ENABLED, DISABLED, or DELETED.
type_: Option<String>The type of the resource: equipment or room.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Resource
impl<'de> Deserialize<'de> for Resource
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
impl StructuralPartialEq for Resource
Auto Trait Implementations§
impl Freeze for Resource
impl RefUnwindSafe for Resource
impl Send for Resource
impl Sync for Resource
impl Unpin for Resource
impl UnwindSafe for Resource
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