Struct twilight_model::guild::PartialMember
source · [−]pub struct PartialMember {
pub avatar: Option<ImageHash>,
pub communication_disabled_until: Option<Timestamp>,
pub deaf: bool,
pub joined_at: Timestamp,
pub mute: bool,
pub nick: Option<String>,
pub permissions: Option<Permissions>,
pub premium_since: Option<Timestamp>,
pub roles: Vec<Id<RoleMarker>>,
pub user: Option<User>,
}Fields
avatar: Option<ImageHash>Member’s guild avatar.
communication_disabled_until: Option<Timestamp>deaf: booljoined_at: Timestampmute: boolnick: Option<String>permissions: Option<Permissions>Permission data for the member.
Sent in an Interaction.
roles: Vec<Id<RoleMarker>>user: Option<User>Trait Implementations
sourceimpl Clone for PartialMember
impl Clone for PartialMember
sourcefn clone(&self) -> PartialMember
fn clone(&self) -> PartialMember
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for PartialMember
impl Debug for PartialMember
sourceimpl<'de> Deserialize<'de> for PartialMember
impl<'de> Deserialize<'de> for PartialMember
sourcefn 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
sourceimpl Hash for PartialMember
impl Hash for PartialMember
sourceimpl PartialEq<PartialMember> for PartialMember
impl PartialEq<PartialMember> for PartialMember
sourcefn eq(&self, other: &PartialMember) -> bool
fn eq(&self, other: &PartialMember) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourceimpl Serialize for PartialMember
impl Serialize for PartialMember
impl Eq for PartialMember
impl StructuralEq for PartialMember
impl StructuralPartialEq for PartialMember
Auto Trait Implementations
impl RefUnwindSafe for PartialMember
impl Send for PartialMember
impl Sync for PartialMember
impl Unpin for PartialMember
impl UnwindSafe for PartialMember
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more