Struct golden_apple::ChatComponent[][src]

pub struct ChatComponent {
Show 15 fields pub text: Option<String>, pub translate: Option<String>, pub keybind: Option<String>, pub score: Option<ChatScore>, pub selector: Option<String>, pub bold: Option<bool>, pub italic: Option<bool>, pub underlined: Option<bool>, pub strikethrough: Option<bool>, pub obfuscated: Option<bool>, pub color: Option<String>, pub insertion: Option<String>, pub clickEvent: Option<ClickEvent>, pub hoverEvent: Option<HoverEvent>, pub extra: Option<Vec<ChatComponent>>,
}
Expand description

Represents one component of a Chat object.

Fields

text: Option<String>

Text to be used.

translate: Option<String>

Translation key to be used.

keybind: Option<String>

Key to use the translated keybind for.

score: Option<ChatScore>

Scoreboard to use.

selector: Option<String>

Selector to use with score.

bold: Option<bool>

Declares if the text is bold.

italic: Option<bool>

Declares if the text is italic.

underlined: Option<bool>

Declares if the text is underlined.

strikethrough: Option<bool>

Declares if the text has a strikethrough applied to it.

obfuscated: Option<bool>

Declares if the text is obfuscated.

color: Option<String>

Declares the color of the text.

insertion: Option<String>

Declares text to insert into the client’s chat when clicked.

clickEvent: Option<ClickEvent>

Defines an event when this text is clicked.

hoverEvent: Option<HoverEvent>

Defines an event when a client is hovering over this text.

extra: Option<Vec<ChatComponent>>

Declares extra components to add aftr this one.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. 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

Compare self to key and return true if they are equal.

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 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)

recently added

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.