Struct twilight_http::request::guild::CreateGuildPrune
source · pub struct CreateGuildPrune<'a> { /* private fields */ }Expand description
Begin a guild prune.
Implementations§
source§impl<'a> CreateGuildPrune<'a>
impl<'a> CreateGuildPrune<'a>
sourcepub const fn include_roles(self, roles: &'a [Id<RoleMarker>]) -> Self
pub const fn include_roles(self, roles: &'a [Id<RoleMarker>]) -> Self
List of roles to include when pruning.
sourcepub const fn compute_prune_count(self, compute_prune_count: bool) -> Self
pub const fn compute_prune_count(self, compute_prune_count: bool) -> Self
Return the amount of pruned members. Discouraged for large guilds.
sourcepub const fn days(self, days: u16) -> Result<Self, ValidationError>
pub const fn days(self, days: u16) -> Result<Self, ValidationError>
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.
sourcepub fn exec(self) -> ResponseFuture<GuildPrune> ⓘ
👎Deprecated since 0.14.0: use .await or into_future instead
pub fn exec(self) -> ResponseFuture<GuildPrune> ⓘ
.await or into_future insteadExecute the request, returning a future resolving to a Response.
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<'_>
§type Output = Result<Response<GuildPrune>, Error>
type Output = Result<Response<GuildPrune>, Error>
The output that the future will produce on completion.
§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