pub struct ShardMessenger { /* private fields */ }
Available on crate features client and gateway only.
Expand description

A lightweight wrapper around an mpsc sender.

This is used to cleanly communicate with a shard’s respective ShardRunner. This can be used for actions such as setting the activity via Self::set_activity or shutting down via Self::shutdown_clean.

Implementations

Creates a new shard messenger.

If you are using the Client, you do not need to do this.

Requests that one or multiple Guilds be chunked.

This will ask the gateway to start sending member chunks for large guilds (250 members+). If a guild is over 250 members, then a full member list will not be downloaded, and must instead be requested to be sent in “chunks” containing members.

Member chunks are sent as the Event::GuildMembersChunk event. Each chunk only contains a partial amount of the total members.

If the cache feature is enabled, the cache will automatically be updated with member chunks.

Examples

Chunk a single guild by Id, limiting to 2000 Members, and not specifying a query parameter:

use serenity::model::id::GuildId;

shard.chunk_guild(GuildId(81384788765712384), Some(2000), ChunkGuildFilter::None, None);

Chunk a single guild by Id, limiting to 20 members, specifying a query parameter of "do" and a nonce of "request":

use serenity::model::id::GuildId;

shard.chunk_guild(
    GuildId(81384788765712384),
    Some(20),
    ChunkGuildFilter::Query("do".to_owned()),
    Some("request"),
);

Sets the user’s current activity, if any.

Other presence settings are maintained.

Examples

Setting the current activity to playing "Heroes of the Storm":

use serenity::model::gateway::Activity;

shard.set_activity(Some(Activity::playing("Heroes of the Storm")));

Sets the user’s full presence information.

Consider using the individual setters if you only need to modify one of these.

Examples

Set the current user as playing "Heroes of the Storm" and being online:

use serenity::model::gateway::Activity;
use serenity::model::user::OnlineStatus;

let activity = Activity::playing("Heroes of the Storm");
shard.set_presence(Some(activity), OnlineStatus::Online);

Sets the user’s current online status.

Note that Offline is not a valid online status, so it is automatically converted to Invisible.

Other presence settings are maintained.

Examples

Setting the current online status for the shard to DoNotDisturb.

use serenity::model::user::OnlineStatus;

shard.set_status(OnlineStatus::DoNotDisturb);

Shuts down the websocket by attempting to cleanly close the connection.

Sends a raw message over the WebSocket.

The given message is not mutated in any way, and is sent as-is.

You should only use this if you know what you’re doing. If you’re wanting to, for example, send a presence update, prefer the usage of the Self::set_presence method.

Sends a message to the shard.

Errors

Returns a [TrySendError] if the shard’s receiver was closed.

Available on crate feature collector only.

Sets a new filter for an event collector.

Available on crate feature collector only.

Sets a new filter for a message collector.

Available on crate feature collector only.

Sets a new filter for a reaction collector.

Available on crate feature collector only.

Sets a new filter for a component interaction collector.

Available on crate feature collector only.

Sets a new filter for a modal interaction collector.

Trait Implementations

Converts this type into a shared reference of the (usually inferred) input type.

Converts this type into a shared reference of the (usually inferred) input type.

Converts this type into a shared reference of the (usually inferred) input type.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

Returns the argument unchanged.

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

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

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