pub struct CreateBan<'a> { /* private fields */ }
Expand description
Bans a user from a guild, optionally with the number of days’ worth of messages to delete and the reason.
§Examples
Ban user 200
from guild 100
, deleting
1 day’s (86_400
second’s) worth of messages, for the reason "memes"
:
use twilight_http::{request::AuditLogReason, Client};
use twilight_model::id::Id;
let client = Client::new("my token".to_owned());
let guild_id = Id::new(100);
let user_id = Id::new(200);
client
.create_ban(guild_id, user_id)
.delete_message_seconds(86_400)
.reason("memes")
.await?;
Implementations§
source§impl<'a> CreateBan<'a>
impl<'a> CreateBan<'a>
sourcepub fn delete_message_seconds(self, seconds: u32) -> Self
pub fn delete_message_seconds(self, seconds: u32) -> Self
Set the number of seconds’ worth of messages to delete.
The number of seconds must be less than or equal to 604_800
(this is equivalent to 7
days).
§Errors
Returns an error of type CreateGuildBanDeleteMessageSeconds
if the
number of seconds is greater than 604_800
(this is equivalent to 7
days).
Trait Implementations§
source§impl<'a> AuditLogReason<'a> for CreateBan<'a>
impl<'a> AuditLogReason<'a> for CreateBan<'a>
source§impl IntoFuture for CreateBan<'_>
impl IntoFuture for CreateBan<'_>
source§type Output = Result<Response<EmptyBody>, Error>
type Output = Result<Response<EmptyBody>, Error>
The output that the future will produce on completion.
source§type IntoFuture = ResponseFuture<EmptyBody>
type IntoFuture = ResponseFuture<EmptyBody>
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
Auto Trait Implementations§
impl<'a> Freeze for CreateBan<'a>
impl<'a> !RefUnwindSafe for CreateBan<'a>
impl<'a> Send for CreateBan<'a>
impl<'a> Sync for CreateBan<'a>
impl<'a> Unpin for CreateBan<'a>
impl<'a> !UnwindSafe for CreateBan<'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