Struct aws_sdk_chime::types::ChannelMembership
source · #[non_exhaustive]pub struct ChannelMembership { /* private fields */ }Expand description
The details of a channel member.
Implementations§
source§impl ChannelMembership
impl ChannelMembership
sourcepub fn invited_by(&self) -> Option<&Identity>
pub fn invited_by(&self) -> Option<&Identity>
The identifier of the member who invited another member.
sourcepub fn type(&self) -> Option<&ChannelMembershipType>
pub fn type(&self) -> Option<&ChannelMembershipType>
The membership type set for the channel member.
sourcepub fn channel_arn(&self) -> Option<&str>
pub fn channel_arn(&self) -> Option<&str>
The ARN of the member's channel.
sourcepub fn created_timestamp(&self) -> Option<&DateTime>
pub fn created_timestamp(&self) -> Option<&DateTime>
The time at which the channel membership was created.
sourcepub fn last_updated_timestamp(&self) -> Option<&DateTime>
pub fn last_updated_timestamp(&self) -> Option<&DateTime>
The time at which a channel membership was last updated.
source§impl ChannelMembership
impl ChannelMembership
sourcepub fn builder() -> ChannelMembershipBuilder
pub fn builder() -> ChannelMembershipBuilder
Creates a new builder-style object to manufacture ChannelMembership.
Trait Implementations§
source§impl Clone for ChannelMembership
impl Clone for ChannelMembership
source§fn clone(&self) -> ChannelMembership
fn clone(&self) -> ChannelMembership
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 ChannelMembership
impl Debug for ChannelMembership
source§impl PartialEq<ChannelMembership> for ChannelMembership
impl PartialEq<ChannelMembership> for ChannelMembership
source§fn eq(&self, other: &ChannelMembership) -> bool
fn eq(&self, other: &ChannelMembership) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ChannelMembership
Auto Trait Implementations§
impl RefUnwindSafe for ChannelMembership
impl Send for ChannelMembership
impl Sync for ChannelMembership
impl Unpin for ChannelMembership
impl UnwindSafe for ChannelMembership
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