Struct aws_sdk_chime::types::Channel
source · #[non_exhaustive]pub struct Channel { /* private fields */ }Expand description
The details of a channel.
Implementations§
source§impl Channel
impl Channel
sourcepub fn channel_arn(&self) -> Option<&str>
pub fn channel_arn(&self) -> Option<&str>
The ARN of the channel.
sourcepub fn mode(&self) -> Option<&ChannelMode>
pub fn mode(&self) -> Option<&ChannelMode>
The mode of the channel.
sourcepub fn privacy(&self) -> Option<&ChannelPrivacy>
pub fn privacy(&self) -> Option<&ChannelPrivacy>
The channel's privacy setting.
sourcepub fn created_by(&self) -> Option<&Identity>
pub fn created_by(&self) -> Option<&Identity>
The AppInstanceUser who created the channel.
sourcepub fn created_timestamp(&self) -> Option<&DateTime>
pub fn created_timestamp(&self) -> Option<&DateTime>
The time at which the AppInstanceUser created the channel.
sourcepub fn last_message_timestamp(&self) -> Option<&DateTime>
pub fn last_message_timestamp(&self) -> Option<&DateTime>
The time at which a member sent the last message in the channel.
sourcepub fn last_updated_timestamp(&self) -> Option<&DateTime>
pub fn last_updated_timestamp(&self) -> Option<&DateTime>
The time at which a channel was last updated.
Trait Implementations§
source§impl PartialEq<Channel> for Channel
impl PartialEq<Channel> for Channel
impl StructuralPartialEq for Channel
Auto Trait Implementations§
impl RefUnwindSafe for Channel
impl Send for Channel
impl Sync for Channel
impl Unpin for Channel
impl UnwindSafe for Channel
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