[][src]Struct serenity::utils::MessageBuilder

pub struct MessageBuilder(pub String);

The Message Builder is an ergonomic utility to easily build a message, by adding text and mentioning mentionable structs.

The finalized value can be accessed via build or the inner value.

Examples

Build a message, mentioning a user and an emoji, and retrieving the value:

use serenity::utils::MessageBuilder;

// assuming an `emoji` and `user` have already been bound

let content = MessageBuilder::new()
    .push("You sent a message, ")
    .mention(&user)
    .push("! ")
    .mention(&emoji)
    .build();

Methods

impl MessageBuilder[src]

pub fn new() -> MessageBuilder[src]

Creates a new, empty builder.

Examples

Create a new MessageBuilder:

use serenity::utils::MessageBuilder;

let message = MessageBuilder::new();

// alternatively:
let message = MessageBuilder::default();

pub fn build(&mut self) -> String[src]

Pulls the inner value out of the builder.

Examples

Create a string mentioning a channel by Id, and then suffixing "!", and finally building it to retrieve the inner String:

use serenity::model::id::ChannelId;
use serenity::utils::MessageBuilder;

let channel_id = ChannelId(81384788765712384);

let content = MessageBuilder::new()
    .channel(channel_id)
    .push("!")
    .build();

assert_eq!(content, "<#81384788765712384>!");

This is equivalent to simply retrieving the tuple struct's first value:

use serenity::utils::MessageBuilder;

let mut content = MessageBuilder::new();
content.push("test");

assert_eq!(content.build(), "test");

pub fn channel<C: Into<ChannelId>>(&mut self, channel: C) -> &mut Self[src]

Mentions the GuildChannel in the built message.

This accepts anything that converts into a ChannelId. Refer to ChannelId's documentation for more information.

Refer to ChannelId's Display implementation for more information on how this is formatted.

Examples

Mentioning a Channel by Id:

use serenity::model::id::ChannelId;
use serenity::utils::MessageBuilder;

let channel_id = ChannelId(81384788765712384);

let content = MessageBuilder::new()
    .push("The channel is: ")
    .channel(channel_id)
    .build();

assert_eq!(content, "The channel is: <#81384788765712384>");

pub fn emoji(&mut self, emoji: &Emoji) -> &mut Self[src]

Displays the given emoji in the built message.

Refer to Emojis Display implementation for more information on how this is formatted.

Examples

Mention an emoji in a message's content:

use serenity::model::guild::Emoji;
use serenity::model::id::EmojiId;
use serenity::utils::MessageBuilder;


let message = MessageBuilder::new()
    .push("foo ")
    .emoji(&emoji)
    .push(".")
    .build();

assert_eq!(message, "foo <:smugAnimeFace:302516740095606785>.");

pub fn mention<M: Mentionable>(&mut self, item: &M) -> &mut Self[src]

Mentions something that implements the Mentionable trait.

pub fn push<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes a string to the internal message content.

Note that this does not mutate either the given data or the internal message content in anyway prior to appending the given content to the internal message.

Examples

use serenity::utils::MessageBuilder;

let mut message = MessageBuilder::new();
message.push("test");

assert_eq!({ message.push("ing"); message.build() }, "testing");

pub fn push_codeblock<D: I>(
    &mut self,
    content: D,
    language: Option<&str>
) -> &mut Self
[src]

Pushes a codeblock to the content, with optional syntax highlighting.

Examples

Pushing a Rust codeblock:

This example is not tested
use serenity::utils::MessageBuilder;

let code = r#"
fn main() {
    println!("Hello, world!");
}
"#;

let content = MessageBuilder::new()
    .push_codeblock(code, Some("rust"))
    .build();

let expected = r#"```rust
fn main() {
    println!("Hello, world!");
}
```"#;

assert_eq!(content, expected);

Pushing a codeblock without a language:

use serenity::utils::MessageBuilder;

let content = MessageBuilder::new()
    .push_codeblock("hello", None)
    .build();

assert_eq!(content, "```\nhello\n```");

pub fn push_mono<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes inlined monospaced text to the content.

Examples

Display a server configuration value to the user:

use serenity::utils::MessageBuilder;

let key = "prefix";
let value = "&";

let content = MessageBuilder::new()
    .push("The setting ")
    .push_mono(key)
    .push(" for this server is ")
    .push_mono(value)
    .push(".")
    .build();

let expected = format!("The setting `{}` for this server is `{}`.",
                       key,
                       value);

assert_eq!(content, expected);

pub fn push_italic<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes inlined italicized text to the content.

Examples

Emphasize information to the user:

use serenity::utils::MessageBuilder;

let content = MessageBuilder::new()
    .push("You don't ")
    .push_italic("always need")
    .push(" to italicize ")
    .push_italic("everything")
    .push(".")
    .build();

let expected = "You don't _always need_ to italicize _everything_.";

assert_eq!(content, expected);

pub fn push_bold<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes an inline bold text to the content.

pub fn push_underline<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes an underlined inline text to the content.

pub fn push_strike<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes a strikethrough inline text to the content.

pub fn push_spoiler<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes a spoiler'd inline text to the content.

pub fn push_quote<D: I>(self, content: D) -> Self[src]

Pushes a quoted inline text to the content

pub fn push_line<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes the given text with a newline appended to the content.

Examples

Push content and then append a newline:

use serenity::utils::MessageBuilder;

let content = MessageBuilder::new().push_line("hello").push("world").build();

assert_eq!(content, "hello\nworld");

pub fn push_mono_line<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes inlined monospace text with an added newline to the content.

Examples

Push content and then append a newline:

use serenity::utils::MessageBuilder;

let content = MessageBuilder::new().push_mono_line("hello").push("world").build();

assert_eq!(content, "`hello`\nworld");

pub fn push_italic_line<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes an inlined italicized text with an added newline to the content.

Examples

Push content and then append a newline:

use serenity::utils::MessageBuilder;

let content = MessageBuilder::new().push_italic_line("hello").push("world").build();

assert_eq!(content, "_hello_\nworld");

pub fn push_bold_line<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes an inline bold text with an added newline to the content.

Examples

Push content and then append a newline:

use serenity::utils::MessageBuilder;

let content = MessageBuilder::new().push_bold_line("hello").push("world").build();

assert_eq!(content, "**hello**\nworld");

pub fn push_underline_line<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes an underlined inline text with an added newline to the content.

Examples

Push content and then append a newline:

use serenity::utils::MessageBuilder;

let content = MessageBuilder::new().push_underline_line("hello").push("world").build();

assert_eq!(content, "__hello__\nworld");

pub fn push_strike_line<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes a strikethrough inline text with a newline added to the content.

Examples

Push content and then append a newline:

use serenity::utils::MessageBuilder;

let content = MessageBuilder::new().push_strike_line("hello").push("world").build();

assert_eq!(content, "~~hello~~\nworld");

pub fn push_spoiler_line<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes a spoiler'd inline text with a newline added to the content.

Examples

Push content and then append a newline:

use serenity::utils::MessageBuilder;

let content = MessageBuilder::new().push_spoiler_line("hello").push("world").build();

assert_eq!(content, "||hello||\nworld");

pub fn push_quote_line<D: I>(self, content: D) -> Self[src]

Pushes a quoted inline text to the content

Examples

Push content and then append a newline:

use serenity::utils::MessageBuilder;

let content = MessageBuilder::new().push_quote_line("hello").push("world").build();

assert_eq!(content, "> hello\nworld");

pub fn push_safe<C: I>(&mut self, content: C) -> &mut Self[src]

Pushes text to your message, but normalizing content - that means ensuring that there's no unwanted formatting, mention spam etc.

pub fn push_codeblock_safe<D: I>(
    &mut self,
    content: D,
    language: Option<&str>
) -> &mut Self
[src]

Pushes a code-block to your message normalizing content.

pub fn push_mono_safe<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes an inline monospaced text to the content normalizing content.

pub fn push_italic_safe<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes an inline italicized text to the content normalizing content.

pub fn push_bold_safe<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes an inline bold text to the content normalizing content.

pub fn push_underline_safe<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes an underlined inline text to the content normalizing content.

pub fn push_strike_safe<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes a strikethrough inline text to the content normalizing content.

pub fn push_spoiler_safe<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes a spoiler'd inline text to the content normalizing content.

pub fn push_quote_safe<D: I>(self, content: D) -> Self[src]

Pushes a quoted inline text to the content normalizing content.

pub fn push_line_safe<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes text with a newline appended to the content normalizing content.

Examples

Push content and then append a newline:

use serenity::utils::MessageBuilder;

let content = MessageBuilder::new().push_line_safe("Hello @everyone")
                                   .push("How are you?")
                                   .build();

assert_eq!(content, "Hello @\u{200B}everyone\nHow are you?");

pub fn push_mono_line_safe<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes an inline monospaced text with added newline to the content normalizing content.

Examples

Push content and then append a newline:

use serenity::utils::MessageBuilder;

let content = MessageBuilder::new()
                .push_mono_line_safe("`hello @everyone`")
                .push("world").build();

assert_eq!(content, "`'hello @\u{200B}everyone'`\nworld");

pub fn push_italic_line_safe<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes an inline italicized text with added newline to the content normalizing content.

Examples

Push content and then append a newline:

use serenity::utils::MessageBuilder;

let content = MessageBuilder::new()
                .push_italic_line_safe("@everyone")
                .push("Isn't a mention.").build();

assert_eq!(content, "_@\u{200B}everyone_\nIsn't a mention.");

pub fn push_bold_line_safe<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes an inline bold text with added newline to the content normalizing content.

Examples

Push content and then append a newline:

use serenity::utils::MessageBuilder;

let content = MessageBuilder::new()
                .push_bold_line_safe("@everyone")
                .push("Isn't a mention.").build();

assert_eq!(content, "**@\u{200B}everyone**\nIsn't a mention.");

pub fn push_underline_line_safe<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes an underlined inline text with added newline to the content normalizing content.

Examples

Push content and then append a newline:

use serenity::utils::MessageBuilder;

let content = MessageBuilder::new()
                .push_underline_line_safe("@everyone")
                .push("Isn't a mention.").build();

assert_eq!(content, "__@\u{200B}everyone__\nIsn't a mention.");

pub fn push_strike_line_safe<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes a strikethrough inline text with added newline to the content normalizing content.

Examples

Push content and then append a newline:

use serenity::utils::MessageBuilder;

let content = MessageBuilder::new()
                .push_strike_line_safe("@everyone")
                .push("Isn't a mention.").build();

assert_eq!(content, "~~@\u{200B}everyone~~\nIsn't a mention.");

pub fn push_spoiler_line_safe<D: I>(&mut self, content: D) -> &mut Self[src]

Pushes a spoiler'd inline text with added newline to the content normalizing content.

Examples

Push content and then append a newline:

use serenity::utils::MessageBuilder;

let content = MessageBuilder::new()
                .push_spoiler_line_safe("@everyone")
                .push("Isn't a mention.").build();

assert_eq!(content, "||@\u{200B}everyone||\nIsn't a mention.");

pub fn push_quote_line_safe<D: I>(self, content: D) -> Self[src]

Pushes a quoted inline text with added newline to the content normalizing content.

Examples

Push content and then append a newline:

use serenity::utils::MessageBuilder;

let content = MessageBuilder::new()
                .push_quote_line_safe("@everyone")
                .push("Isn't a mention.").build();

assert_eq!(content, "> @\u{200B}everyone\nIsn't a mention.");

pub fn quote_rest(self) -> Self[src]

Starts a multi-line quote, every push after this one will be quoted

pub fn role<R: Into<RoleId>>(&mut self, role: R) -> &mut Self[src]

Mentions the Role in the built message.

This accepts anything that converts into a RoleId. Refer to RoleId's documentation for more information.

Refer to RoleId's Display implementation for more information on how this is formatted.

pub fn user<U: Into<UserId>>(&mut self, user: U) -> &mut Self[src]

Mentions the User in the built message.

This accepts anything that converts into a UserId. Refer to UserId's documentation for more information.

Refer to UserId's Display implementation for more information on how this is formatted.

Trait Implementations

impl EmbedMessageBuilding for MessageBuilder[src]

impl Default for MessageBuilder[src]

impl Clone for MessageBuilder[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Display for MessageBuilder[src]

fn fmt(&self, f: &mut Formatter) -> Result[src]

Formats the message builder into a string.

This is done by simply taking the internal value of the tuple-struct and writing it into the formatter.

Examples

Create a message builder, and format it into a string via the format! macro:

use serenity::utils::MessageBuilder;

impl Debug for MessageBuilder[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<T> DebugAny for T where
    T: Any + Debug
[src]

impl<T> CloneAny for T where
    T: Clone + Any
[src]

impl<T> UnsafeAny for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,