Struct twilight_http::request::guild::member::get_guild_members::GetGuildMembers[][src]

pub struct GetGuildMembers<'a> { /* fields omitted */ }
Expand description

Get the members of a guild, by id.

The upper limit to this request is 1000. If more than 1000 members are needed, the requests must be chained. Discord defaults the limit to 1.

Examples

Get the first 500 members of guild 100 after user ID 3000:

use twilight_http::Client;
use twilight_model::id::{GuildId, UserId};

let client = Client::new("my token".to_owned());

let guild_id = GuildId::new(100).expect("non zero");
let user_id = UserId::new(3000).expect("non zero");
let members = client.guild_members(guild_id).after(user_id).exec().await?;

Implementations

Sets the user ID to get members after.

Sets the number of members to retrieve per request.

The limit must be greater than 0 and less than 1000.

Errors

Returns a GetGuildMembersErrorType::LimitInvalid error type if the limit is 0 or greater than 1000.

Sets whether to retrieve matched member presences

Execute the request, returning a future resolving to a Response.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more