Struct twilight_http::request::channel::thread::RemoveThreadMember
source · pub struct RemoveThreadMember<'a> { /* private fields */ }
Expand description
Remove another member from a thread.
Requires that the thread is not archived.
Requires the MANAGE_THREADS
permission, unless both the thread is a
PrivateThread
, and the current user is the creator of the thread.
Implementations§
source§impl<'a> RemoveThreadMember<'a>
impl<'a> RemoveThreadMember<'a>
Trait Implementations§
source§impl IntoFuture for RemoveThreadMember<'_>
impl IntoFuture for RemoveThreadMember<'_>
§type Output = Result<Response<EmptyBody>, Error>
type Output = Result<Response<EmptyBody>, Error>
The output that the future will produce on completion.
§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