pub struct TextSection {
pub level: u8,
pub title: String,
pub content: String,
}Expand description
Section de texte
Fields§
§level: u8Niveau de heading (1-6)
title: StringTitre de la section
content: StringContenu de la section
Trait Implementations§
Source§impl Clone for TextSection
impl Clone for TextSection
Source§fn clone(&self) -> TextSection
fn clone(&self) -> TextSection
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 moreAuto Trait Implementations§
impl Freeze for TextSection
impl RefUnwindSafe for TextSection
impl Send for TextSection
impl Sync for TextSection
impl Unpin for TextSection
impl UnwindSafe for TextSection
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