pub struct DescriptionDetails {
pub meta: NodeMeta,
pub children: Vec<Block>,
}Expand description
The details (: …) attached to a DescriptionItem’s term.
Fields§
§meta: NodeMetaNode metadata (source span).
children: Vec<Block>The details’ block content.
Trait Implementations§
Source§impl Clone for DescriptionDetails
impl Clone for DescriptionDetails
Source§fn clone(&self) -> DescriptionDetails
fn clone(&self) -> DescriptionDetails
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 DescriptionDetails
impl Debug for DescriptionDetails
impl Eq for DescriptionDetails
Source§impl PartialEq for DescriptionDetails
impl PartialEq for DescriptionDetails
Source§fn eq(&self, other: &DescriptionDetails) -> bool
fn eq(&self, other: &DescriptionDetails) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescriptionDetails
Auto Trait Implementations§
impl Freeze for DescriptionDetails
impl RefUnwindSafe for DescriptionDetails
impl Send for DescriptionDetails
impl Sync for DescriptionDetails
impl Unpin for DescriptionDetails
impl UnsafeUnpin for DescriptionDetails
impl UnwindSafe for DescriptionDetails
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