pub struct GetAuditLog<'a> { /* private fields */ }
Expand description
Get the audit log for a guild.
§Examples
use twilight_http::Client;
use twilight_model::id::Id;
let client = Client::new("token".to_owned());
let guild_id = Id::new(101);
let audit_log = client.audit_log(guild_id).await?.model().await?;
for entry in audit_log.entries {
println!("ID: {}", entry.id);
println!(" Action Type: {}", u16::from(entry.action_type));
println!(" Changes:");
for change in entry.changes {
println!("{change:?}");
}
}
Implementations§
source§impl<'a> GetAuditLog<'a>
impl<'a> GetAuditLog<'a>
sourcepub fn action_type(self, action_type: AuditLogEventType) -> Self
pub fn action_type(self, action_type: AuditLogEventType) -> Self
Filter by an action type.
sourcepub fn limit(self, limit: u16) -> Self
pub fn limit(self, limit: u16) -> Self
Set the maximum number of audit logs to retrieve.
The minimum is 1 and the maximum is 100.
§Errors
Returns an error of type GetGuildAuditLog
if the limit
is 0 or
greater than 100.
sourcepub fn user_id(self, user_id: Id<UserMarker>) -> Self
pub fn user_id(self, user_id: Id<UserMarker>) -> Self
Filter audit log for entries from a user.
This is the user who did the auditable action, not the target of the auditable action.
Trait Implementations§
source§impl IntoFuture for GetAuditLog<'_>
impl IntoFuture for GetAuditLog<'_>
source§type Output = Result<Response<AuditLog>, Error>
type Output = Result<Response<AuditLog>, Error>
The output that the future will produce on completion.
source§type IntoFuture = ResponseFuture<AuditLog>
type IntoFuture = ResponseFuture<AuditLog>
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 GetAuditLog<'_>
impl TryIntoRequest for GetAuditLog<'_>
Auto Trait Implementations§
impl<'a> Freeze for GetAuditLog<'a>
impl<'a> !RefUnwindSafe for GetAuditLog<'a>
impl<'a> Send for GetAuditLog<'a>
impl<'a> Sync for GetAuditLog<'a>
impl<'a> Unpin for GetAuditLog<'a>
impl<'a> !UnwindSafe for GetAuditLog<'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