Struct discord_flows::model::guild::GuildPrune
source · pub struct GuildPrune {
pub pruned: u64,
}Expand description
Representation of the number of members that would be pruned by a guild prune operation.
Fields§
§pruned: u64The number of members that would be pruned by the operation.
Trait Implementations§
source§impl Clone for GuildPrune
impl Clone for GuildPrune
source§fn clone(&self) -> GuildPrune
fn clone(&self) -> GuildPrune
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 GuildPrune
impl Debug for GuildPrune
source§impl<'de> Deserialize<'de> for GuildPrune
impl<'de> Deserialize<'de> for GuildPrune
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<GuildPrune, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<GuildPrune, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for GuildPrune
impl Serialize for GuildPrune
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for GuildPrune
Auto Trait Implementations§
impl RefUnwindSafe for GuildPrune
impl Send for GuildPrune
impl Sync for GuildPrune
impl Unpin for GuildPrune
impl UnwindSafe for GuildPrune
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