pub struct RichTextFootnote {
pub kind: String,
pub text: RichText,
pub name: String,
}Expand description
The body of a footnote.
Fields§
§kind: StringAlways "footnote".
text: RichTextThe footnote content.
name: StringThe footnote identifier.
Trait Implementations§
Source§impl Clone for RichTextFootnote
impl Clone for RichTextFootnote
Source§fn clone(&self) -> RichTextFootnote
fn clone(&self) -> RichTextFootnote
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RichTextFootnote
impl Debug for RichTextFootnote
Source§impl<'de> Deserialize<'de> for RichTextFootnote
impl<'de> Deserialize<'de> for RichTextFootnote
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 RichTextFootnote
impl RefUnwindSafe for RichTextFootnote
impl Send for RichTextFootnote
impl Sync for RichTextFootnote
impl Unpin for RichTextFootnote
impl UnsafeUnpin for RichTextFootnote
impl UnwindSafe for RichTextFootnote
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