Struct aws_sdk_chime::types::ChannelModerator
source · #[non_exhaustive]pub struct ChannelModerator {
pub moderator: Option<Identity>,
pub channel_arn: Option<String>,
pub created_timestamp: Option<DateTime>,
pub created_by: Option<Identity>,
}
Expand description
The details of a channel moderator.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.moderator: Option<Identity>
The moderator's data.
channel_arn: Option<String>
The ARN of the moderator's channel.
created_timestamp: Option<DateTime>
The time at which the moderator was created.
created_by: Option<Identity>
The AppInstanceUser
who created the moderator.
Implementations§
source§impl ChannelModerator
impl ChannelModerator
sourcepub fn channel_arn(&self) -> Option<&str>
pub fn channel_arn(&self) -> Option<&str>
The ARN of the moderator's channel.
sourcepub fn created_timestamp(&self) -> Option<&DateTime>
pub fn created_timestamp(&self) -> Option<&DateTime>
The time at which the moderator was created.
sourcepub fn created_by(&self) -> Option<&Identity>
pub fn created_by(&self) -> Option<&Identity>
The AppInstanceUser
who created the moderator.
source§impl ChannelModerator
impl ChannelModerator
sourcepub fn builder() -> ChannelModeratorBuilder
pub fn builder() -> ChannelModeratorBuilder
Creates a new builder-style object to manufacture ChannelModerator
.
Trait Implementations§
source§impl Clone for ChannelModerator
impl Clone for ChannelModerator
source§fn clone(&self) -> ChannelModerator
fn clone(&self) -> ChannelModerator
Returns a copy 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 ChannelModerator
impl Debug for ChannelModerator
source§impl PartialEq for ChannelModerator
impl PartialEq for ChannelModerator
source§fn eq(&self, other: &ChannelModerator) -> bool
fn eq(&self, other: &ChannelModerator) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ChannelModerator
Auto Trait Implementations§
impl RefUnwindSafe for ChannelModerator
impl Send for ChannelModerator
impl Sync for ChannelModerator
impl Unpin for ChannelModerator
impl UnwindSafe for ChannelModerator
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