pub struct AbstractSection {
pub section_type: AbstractSectionType,
pub children: Vec<Block>,
}Expand description
A structured section within an abstract.
Fields§
§section_type: AbstractSectionTypeSection type.
children: Vec<Block>Section content.
Trait Implementations§
Source§impl Clone for AbstractSection
impl Clone for AbstractSection
Source§fn clone(&self) -> AbstractSection
fn clone(&self) -> AbstractSection
Returns a duplicate 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 AbstractSection
impl Debug for AbstractSection
Source§impl<'de> Deserialize<'de> for AbstractSection
impl<'de> Deserialize<'de> for AbstractSection
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 AbstractSection
impl PartialEq for AbstractSection
Source§impl Serialize for AbstractSection
impl Serialize for AbstractSection
impl StructuralPartialEq for AbstractSection
Auto Trait Implementations§
impl Freeze for AbstractSection
impl RefUnwindSafe for AbstractSection
impl Send for AbstractSection
impl Sync for AbstractSection
impl Unpin for AbstractSection
impl UnsafeUnpin for AbstractSection
impl UnwindSafe for AbstractSection
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