pub struct GetCurrentUserGuilds<'a> { /* private fields */ }
Expand description
Returns a list of guilds for the current user.
§Examples
Get the first 25 guilds with an ID after 300
and before
400
:
use twilight_http::Client;
use twilight_model::id::Id;
let client = Client::new("my token".to_owned());
let after = Id::new(300);
let before = Id::new(400);
let guilds = client
.current_user_guilds()
.after(after)
.before(before)
.limit(25)
.await?;
Implementations§
source§impl<'a> GetCurrentUserGuilds<'a>
impl<'a> GetCurrentUserGuilds<'a>
sourcepub fn after(self, guild_id: Id<GuildMarker>) -> Self
pub fn after(self, guild_id: Id<GuildMarker>) -> Self
Get guilds after this guild id.
sourcepub fn before(self, guild_id: Id<GuildMarker>) -> Self
pub fn before(self, guild_id: Id<GuildMarker>) -> Self
Get guilds before this guild id.
sourcepub fn limit(self, limit: u16) -> Self
pub fn limit(self, limit: u16) -> Self
Set the maximum number of guilds to retrieve.
The minimum is 1 and the maximum is 200. See Discord Docs/Get Current User Guilds.
§Errors
Returns an error of type GetCurrentUserGuilds
if the name length is
too short or too long.
Trait Implementations§
source§impl IntoFuture for GetCurrentUserGuilds<'_>
impl IntoFuture for GetCurrentUserGuilds<'_>
source§type Output = Result<Response<ListBody<CurrentUserGuild>>, Error>
type Output = Result<Response<ListBody<CurrentUserGuild>>, Error>
The output that the future will produce on completion.
source§type IntoFuture = ResponseFuture<ListBody<CurrentUserGuild>>
type IntoFuture = ResponseFuture<ListBody<CurrentUserGuild>>
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 GetCurrentUserGuilds<'_>
impl TryIntoRequest for GetCurrentUserGuilds<'_>
Auto Trait Implementations§
impl<'a> Freeze for GetCurrentUserGuilds<'a>
impl<'a> !RefUnwindSafe for GetCurrentUserGuilds<'a>
impl<'a> Send for GetCurrentUserGuilds<'a>
impl<'a> Sync for GetCurrentUserGuilds<'a>
impl<'a> Unpin for GetCurrentUserGuilds<'a>
impl<'a> !UnwindSafe for GetCurrentUserGuilds<'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