pub struct EmbedField {
pub name: String,
pub value: String,
pub inline: Option<bool>,
}
Expand description
Represents an Embed Field object.
Fields§
§name: String
The name of the field.
value: String
The value of the field.
inline: Option<bool>
Whether or not this field should display as inline.
Implementations§
Trait Implementations§
Source§impl Clone for EmbedField
impl Clone for EmbedField
Source§fn clone(&self) -> EmbedField
fn clone(&self) -> EmbedField
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§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