pub struct Member {
pub disabled_date: Option<f64>,
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 user or group.
Fields§
§disabled_date: Option<f64>The date indicating when the member was disabled from Amazon WorkMail use.
enabled_date: Option<f64>The date indicating when the member was enabled for Amazon WorkMail use.
id: Option<String>The identifier of the member.
name: Option<String>The name of the member.
state: Option<String>The state of the member, which can be ENABLED, DISABLED, or DELETED.
type_: Option<String>A member can be a user or group.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Member
impl<'de> Deserialize<'de> for Member
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 Member
Auto Trait Implementations§
impl Freeze for Member
impl RefUnwindSafe for Member
impl Send for Member
impl Sync for Member
impl Unpin for Member
impl UnwindSafe for Member
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