pub struct CreateGuildPrune<'a> { /* private fields */ }
Expand description
Begin a guild prune.
Implementations§
source§impl<'a> CreateGuildPrune<'a>
impl<'a> CreateGuildPrune<'a>
sourcepub fn include_roles(self, roles: &'a [Id<RoleMarker>]) -> Self
pub fn include_roles(self, roles: &'a [Id<RoleMarker>]) -> Self
List of roles to include when pruning.
sourcepub fn compute_prune_count(self, compute_prune_count: bool) -> Self
pub fn compute_prune_count(self, compute_prune_count: bool) -> Self
Return the amount of pruned members. Discouraged for large guilds.
sourcepub fn days(self, days: u16) -> Self
pub fn days(self, days: u16) -> Self
Set the number of days that a user must be inactive before being pruned.
The number of days must be greater than 0.
§Errors
Returns an error of type GuildPruneDays
if the number of days is 0
or more than 30.
Trait Implementations§
source§impl<'a> AuditLogReason<'a> for CreateGuildPrune<'a>
impl<'a> AuditLogReason<'a> for CreateGuildPrune<'a>
source§impl IntoFuture for CreateGuildPrune<'_>
impl IntoFuture for CreateGuildPrune<'_>
source§type Output = Result<Response<GuildPrune>, Error>
type Output = Result<Response<GuildPrune>, Error>
The output that the future will produce on completion.
source§type IntoFuture = ResponseFuture<GuildPrune>
type IntoFuture = ResponseFuture<GuildPrune>
Which kind of future are we turning this into?
source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
source§impl TryIntoRequest for CreateGuildPrune<'_>
impl TryIntoRequest for CreateGuildPrune<'_>
Auto Trait Implementations§
impl<'a> Freeze for CreateGuildPrune<'a>
impl<'a> !RefUnwindSafe for CreateGuildPrune<'a>
impl<'a> Send for CreateGuildPrune<'a>
impl<'a> Sync for CreateGuildPrune<'a>
impl<'a> Unpin for CreateGuildPrune<'a>
impl<'a> !UnwindSafe for CreateGuildPrune<'a>
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