pub struct DescribeGroupResponse {
pub disabled_date: Option<f64>,
pub email: Option<String>,
pub enabled_date: Option<f64>,
pub group_id: Option<String>,
pub name: Option<String>,
pub state: Option<String>,
}Fields§
§disabled_date: Option<f64>The date and time when a user was deregistered from WorkMail, in UNIX epoch time format.
email: Option<String>The email of the described group.
enabled_date: Option<f64>The date and time when a user was registered to WorkMail, in UNIX epoch time format.
group_id: Option<String>The identifier of the described group.
name: Option<String>The name of the described group.
state: Option<String>The state of the user: enabled (registered to Amazon WorkMail) or disabled (deregistered or never registered to WorkMail).
Trait Implementations§
Source§impl Clone for DescribeGroupResponse
impl Clone for DescribeGroupResponse
Source§fn clone(&self) -> DescribeGroupResponse
fn clone(&self) -> DescribeGroupResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DescribeGroupResponse
impl Debug for DescribeGroupResponse
Source§impl Default for DescribeGroupResponse
impl Default for DescribeGroupResponse
Source§fn default() -> DescribeGroupResponse
fn default() -> DescribeGroupResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeGroupResponse
impl<'de> Deserialize<'de> for DescribeGroupResponse
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 PartialEq for DescribeGroupResponse
impl PartialEq for DescribeGroupResponse
impl StructuralPartialEq for DescribeGroupResponse
Auto Trait Implementations§
impl Freeze for DescribeGroupResponse
impl RefUnwindSafe for DescribeGroupResponse
impl Send for DescribeGroupResponse
impl Sync for DescribeGroupResponse
impl Unpin for DescribeGroupResponse
impl UnwindSafe for DescribeGroupResponse
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