pub struct AddRoleToMember<'a> { /* private fields */ }
Expand description
Add a role to a member in a guild.
§Examples
In guild 1
, add role 2
to user 3
, for the reason "test"
:
use twilight_http::{request::AuditLogReason, Client};
use twilight_model::id::Id;
let client = Client::new("my token".to_owned());
let guild_id = Id::new(1);
let role_id = Id::new(2);
let user_id = Id::new(3);
client
.add_guild_member_role(guild_id, user_id, role_id)
.reason("test")
.await?;
Trait Implementations§
source§impl<'a> AuditLogReason<'a> for AddRoleToMember<'a>
impl<'a> AuditLogReason<'a> for AddRoleToMember<'a>
source§impl IntoFuture for AddRoleToMember<'_>
impl IntoFuture for AddRoleToMember<'_>
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
source§impl TryIntoRequest for AddRoleToMember<'_>
impl TryIntoRequest for AddRoleToMember<'_>
Auto Trait Implementations§
impl<'a> Freeze for AddRoleToMember<'a>
impl<'a> !RefUnwindSafe for AddRoleToMember<'a>
impl<'a> Send for AddRoleToMember<'a>
impl<'a> Sync for AddRoleToMember<'a>
impl<'a> Unpin for AddRoleToMember<'a>
impl<'a> !UnwindSafe for AddRoleToMember<'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