#[non_exhaustive]pub struct ChannelMembershipForAppInstanceUserSummary {
pub channel_summary: Option<ChannelSummary>,
pub app_instance_user_membership_summary: Option<AppInstanceUserMembershipSummary>,
}Expand description
Summary of the channel membership details of an AppInstanceUser.
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.channel_summary: Option<ChannelSummary>Summary of the details of a Channel.
app_instance_user_membership_summary: Option<AppInstanceUserMembershipSummary>Summary of the membership details of an AppInstanceUser.
Implementations§
source§impl ChannelMembershipForAppInstanceUserSummary
impl ChannelMembershipForAppInstanceUserSummary
sourcepub fn channel_summary(&self) -> Option<&ChannelSummary>
pub fn channel_summary(&self) -> Option<&ChannelSummary>
Summary of the details of a Channel.
sourcepub fn app_instance_user_membership_summary(
&self
) -> Option<&AppInstanceUserMembershipSummary>
pub fn app_instance_user_membership_summary( &self ) -> Option<&AppInstanceUserMembershipSummary>
Summary of the membership details of an AppInstanceUser.
source§impl ChannelMembershipForAppInstanceUserSummary
impl ChannelMembershipForAppInstanceUserSummary
sourcepub fn builder() -> ChannelMembershipForAppInstanceUserSummaryBuilder
pub fn builder() -> ChannelMembershipForAppInstanceUserSummaryBuilder
Creates a new builder-style object to manufacture ChannelMembershipForAppInstanceUserSummary.
Trait Implementations§
source§impl Clone for ChannelMembershipForAppInstanceUserSummary
impl Clone for ChannelMembershipForAppInstanceUserSummary
source§fn clone(&self) -> ChannelMembershipForAppInstanceUserSummary
fn clone(&self) -> ChannelMembershipForAppInstanceUserSummary
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 PartialEq for ChannelMembershipForAppInstanceUserSummary
impl PartialEq for ChannelMembershipForAppInstanceUserSummary
source§fn eq(&self, other: &ChannelMembershipForAppInstanceUserSummary) -> bool
fn eq(&self, other: &ChannelMembershipForAppInstanceUserSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ChannelMembershipForAppInstanceUserSummary
Auto Trait Implementations§
impl RefUnwindSafe for ChannelMembershipForAppInstanceUserSummary
impl Send for ChannelMembershipForAppInstanceUserSummary
impl Sync for ChannelMembershipForAppInstanceUserSummary
impl Unpin for ChannelMembershipForAppInstanceUserSummary
impl UnwindSafe for ChannelMembershipForAppInstanceUserSummary
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.