pub struct EmbedField {
pub title: String,
pub value: String,
pub inline: bool,
}
Expand description
Describes a field that can be used inside a message embed
Fields§
§title: String
Field title
value: String
Field value
inline: bool
If true, the field will be displayed on the same line as the last
Trait Implementations§
Source§impl Debug for EmbedField
impl Debug for EmbedField
Source§impl Default for EmbedField
impl Default for EmbedField
Source§fn default() -> EmbedField
fn default() -> EmbedField
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EmbedField
impl<'de> Deserialize<'de> for EmbedField
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EmbedField
impl RefUnwindSafe for EmbedField
impl Send for EmbedField
impl Sync for EmbedField
impl Unpin for EmbedField
impl UnwindSafe for EmbedField
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more