pub struct WireFootnote {
pub marker: String,
pub inlines: Vec<WireInline>,
}Expand description
One footnote attached to a table.
Fields§
§marker: String§inlines: Vec<WireInline>Trait Implementations§
Source§impl Clone for WireFootnote
impl Clone for WireFootnote
Source§fn clone(&self) -> WireFootnote
fn clone(&self) -> WireFootnote
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 WireFootnote
impl Debug for WireFootnote
Source§impl<'de> Deserialize<'de> for WireFootnote
impl<'de> Deserialize<'de> for WireFootnote
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 WireFootnote
impl PartialEq for WireFootnote
Source§fn eq(&self, other: &WireFootnote) -> bool
fn eq(&self, other: &WireFootnote) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WireFootnote
impl Serialize for WireFootnote
impl StructuralPartialEq for WireFootnote
Auto Trait Implementations§
impl Freeze for WireFootnote
impl RefUnwindSafe for WireFootnote
impl Send for WireFootnote
impl Sync for WireFootnote
impl Unpin for WireFootnote
impl UnsafeUnpin for WireFootnote
impl UnwindSafe for WireFootnote
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