pub struct HeadingNode {
pub level: u8,
pub text: String,
}Fields§
§level: u8§text: StringTrait Implementations§
Source§impl Clone for HeadingNode
impl Clone for HeadingNode
Source§fn clone(&self) -> HeadingNode
fn clone(&self) -> HeadingNode
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 HeadingNode
impl Debug for HeadingNode
Source§impl<'de> Deserialize<'de> for HeadingNode
impl<'de> Deserialize<'de> for HeadingNode
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 HeadingNode
impl PartialEq for HeadingNode
Source§fn eq(&self, other: &HeadingNode) -> bool
fn eq(&self, other: &HeadingNode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HeadingNode
impl Serialize for HeadingNode
impl Eq for HeadingNode
impl StructuralPartialEq for HeadingNode
Auto Trait Implementations§
impl Freeze for HeadingNode
impl RefUnwindSafe for HeadingNode
impl Send for HeadingNode
impl Sync for HeadingNode
impl Unpin for HeadingNode
impl UnsafeUnpin for HeadingNode
impl UnwindSafe for HeadingNode
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