Trait valence::text::IntoText

source ·
pub trait IntoText<'a>: Sized {
Show 32 methods // Required method fn into_cow_text(self) -> Cow<'a, Text>; // Provided methods fn into_text(self) -> Text { ... } fn color(self, color: impl Into<Color>) -> Text { ... } fn clear_color(self) -> Text { ... } fn font(self, font: Font) -> Text { ... } fn clear_font(self) -> Text { ... } fn bold(self) -> Text { ... } fn not_bold(self) -> Text { ... } fn clear_bold(self) -> Text { ... } fn italic(self) -> Text { ... } fn not_italic(self) -> Text { ... } fn clear_italic(self) -> Text { ... } fn underlined(self) -> Text { ... } fn not_underlined(self) -> Text { ... } fn clear_underlined(self) -> Text { ... } fn strikethrough(self) -> Text { ... } fn not_strikethrough(self) -> Text { ... } fn clear_strikethrough(self) -> Text { ... } fn obfuscated(self) -> Text { ... } fn not_obfuscated(self) -> Text { ... } fn clear_obfuscated(self) -> Text { ... } fn insertion(self, insertion: impl Into<Cow<'static, str>>) -> Text { ... } fn clear_insertion(self) -> Text { ... } fn on_click_open_url(self, url: impl Into<Cow<'static, str>>) -> Text { ... } fn on_click_run_command(self, command: impl Into<Cow<'static, str>>) -> Text { ... } fn on_click_suggest_command( self, command: impl Into<Cow<'static, str>>, ) -> Text { ... } fn on_click_change_page(self, page: impl Into<i32>) -> Text { ... } fn on_click_copy_to_clipboard( self, text: impl Into<Cow<'static, str>>, ) -> Text { ... } fn clear_click_event(self) -> Text { ... } fn on_hover_show_text(self, text: impl IntoText<'static>) -> Text { ... } fn clear_hover_event(self) -> Text { ... } fn add_child(self, text: impl IntoText<'static>) -> Text { ... }
}
Expand description

Trait for any data that can be converted to a Text object.

Also conveniently provides many useful methods for modifying a Text object.

§Usage

let mut my_text = "".into_text();
my_text = my_text.color(NamedColor::Red).bold();
my_text = my_text.add_child("CRABBBBB".obfuscated());

Required Methods§

source

fn into_cow_text(self) -> Cow<'a, Text>

Converts to a Text object, either owned or borrowed.

Provided Methods§

source

fn into_text(self) -> Text

Converts to an owned Text object.

source

fn color(self, color: impl Into<Color>) -> Text

Sets the color of the text.

source

fn clear_color(self) -> Text

Clears the color of the text. Color of parent Text object will be used.

source

fn font(self, font: Font) -> Text

Sets the font of the text.

source

fn clear_font(self) -> Text

Clears the font of the text. Font of parent Text object will be used.

source

fn bold(self) -> Text

Makes the text bold.

source

fn not_bold(self) -> Text

Makes the text not bold.

source

fn clear_bold(self) -> Text

Clears the bold property of the text. Property of the parent Text object will be used.

source

fn italic(self) -> Text

Makes the text italic.

source

fn not_italic(self) -> Text

Makes the text not italic.

source

fn clear_italic(self) -> Text

Clears the italic property of the text. Property of the parent Text object will be used.

source

fn underlined(self) -> Text

Makes the text underlined.

source

fn not_underlined(self) -> Text

Makes the text not underlined.

source

fn clear_underlined(self) -> Text

Clears the underlined property of the text. Property of the parent Text object will be used.

source

fn strikethrough(self) -> Text

Adds a strikethrough effect to the text.

source

fn not_strikethrough(self) -> Text

Removes the strikethrough effect from the text.

source

fn clear_strikethrough(self) -> Text

Clears the strikethrough property of the text. Property of the parent Text object will be used.

source

fn obfuscated(self) -> Text

Makes the text obfuscated.

source

fn not_obfuscated(self) -> Text

Makes the text not obfuscated.

source

fn clear_obfuscated(self) -> Text

Clears the obfuscated property of the text. Property of the parent Text object will be used.

source

fn insertion(self, insertion: impl Into<Cow<'static, str>>) -> Text

Adds an insertion property to the text. When shift-clicked, the given text will be inserted into chat box for the client.

source

fn clear_insertion(self) -> Text

Clears the insertion property of the text. Property of the parent Text object will be used.

source

fn on_click_open_url(self, url: impl Into<Cow<'static, str>>) -> Text

On click, opens the given URL. Has to be http or https protocol.

source

fn on_click_run_command(self, command: impl Into<Cow<'static, str>>) -> Text

On click, sends a command. Doesn’t actually have to be a command, can be a simple chat message.

source

fn on_click_suggest_command(self, command: impl Into<Cow<'static, str>>) -> Text

On click, copies the given text to the chat box.

source

fn on_click_change_page(self, page: impl Into<i32>) -> Text

On click, turns the page of the opened book to the given number. Indexing starts at 1.

source

fn on_click_copy_to_clipboard(self, text: impl Into<Cow<'static, str>>) -> Text

On click, copies the given text to clipboard.

source

fn clear_click_event(self) -> Text

Clears the click_event property of the text. Property of the parent Text object will be used.

source

fn on_hover_show_text(self, text: impl IntoText<'static>) -> Text

On mouse hover, shows the given text in a tooltip.

source

fn clear_hover_event(self) -> Text

Clears the hover_event property of the text. Property of the parent Text object will be used.

source

fn add_child(self, text: impl IntoText<'static>) -> Text

Adds a child Text object.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'a> IntoText<'a> for &'static str

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for Cow<'a, Text>

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for Cow<'static, str>

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for bool

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for char

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for f32

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for f64

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for i8

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for i16

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for i32

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for i64

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for i128

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for isize

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for u8

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for u16

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for u32

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for u64

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for u128

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for usize

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'a> for String

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a> IntoText<'static> for &'a Cow<'static, str>

source§

fn into_cow_text(self) -> Cow<'static, Text>

source§

impl<'a, 'b> IntoText<'a> for &'a Cow<'b, Text>

source§

fn into_cow_text(self) -> Cow<'a, Text>

source§

impl<'a, 'b> IntoText<'b> for &'a String

source§

fn into_cow_text(self) -> Cow<'b, Text>

source§

impl<'a, 'b, 'c, T, const N: usize> IntoText<'c> for &'b [T; N]
where T: IntoText<'a> + Clone,

source§

fn into_cow_text(self) -> Cow<'c, Text>

source§

impl<'a, 'b, T, const N: usize> IntoText<'b> for [T; N]
where T: IntoText<'a>,

source§

fn into_cow_text(self) -> Cow<'b, Text>

Implementors§

source§

impl<'a> IntoText<'a> for &'a Text

source§

impl<'a> IntoText<'a> for Text