#[non_exhaustive]pub struct EmbedField {
pub name: String,
pub value: String,
pub inline: bool,
}
Expand description
A field object in an embed.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: String
The name of the field.
The maximum length of this field is 512 unicode codepoints.
value: String
The value of the field.
The maximum length of this field is 1024 unicode codepoints.
inline: bool
Indicator of whether the field should display as inline.
Implementations§
Source§impl EmbedField
impl EmbedField
Sourcepub fn new<T, U>(name: T, value: U, inline: bool) -> Self
pub fn new<T, U>(name: T, value: U, inline: bool) -> Self
Creates a new embed field.
Note: Refer to the Self::name
and Self::value
documentation for maximum
lengths.
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<'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
Source§impl PartialEq for EmbedField
impl PartialEq for EmbedField
Source§impl Serialize for EmbedField
impl Serialize for EmbedField
impl StructuralPartialEq for EmbedField
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