pub struct BulletList { /* private fields */ }
Implementations§
Source§impl BulletList
impl BulletList
pub fn new( common: CommonAttributes, extra: BulletList, children: Vec<ListItem>, ) -> BulletList
Trait Implementations§
Source§impl Clone for BulletList
impl Clone for BulletList
Source§fn clone(&self) -> BulletList
fn clone(&self) -> BulletList
Returns a copy 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 BulletList
impl Debug for BulletList
Source§impl Default for BulletList
impl Default for BulletList
Source§fn default() -> BulletList
fn default() -> BulletList
Returns the “default value” for a type. Read more
Source§impl Element for BulletList
impl Element for BulletList
fn ids_mut(&mut self) -> &mut Vec<ID>
Source§fn names(&self) -> &Vec<NameToken>
fn names(&self) -> &Vec<NameToken>
a list containing the names of an element, typically originating from the element’s title or content.
Each name in names must be unique; if there are name conflicts (two or more elements want to the same name),
the contents will be transferred to the dupnames attribute on the duplicate elements.
An element may have at most one of the names or dupnames attributes, but not both.
fn names_mut(&mut self) -> &mut Vec<NameToken>
fn source(&self) -> &Option<PathBuf>
fn source_mut(&mut self) -> &mut Option<PathBuf>
fn classes(&self) -> &Vec<String>
fn classes_mut(&mut self) -> &mut Vec<String>
Source§impl ExtraAttributes<BulletList> for BulletList
impl ExtraAttributes<BulletList> for BulletList
fn with_extra(extra: BulletList) -> BulletList
fn extra(&self) -> &BulletList
fn extra_mut(&mut self) -> &mut BulletList
Source§impl From<BulletList> for BodyElement
impl From<BulletList> for BodyElement
Source§fn from(inner: BulletList) -> Self
fn from(inner: BulletList) -> Self
Converts to this type from the input type.
Source§impl From<BulletList> for StructuralSubElement
impl From<BulletList> for StructuralSubElement
Source§fn from(inner: BulletList) -> Self
fn from(inner: BulletList) -> Self
Converts to this type from the input type.
Source§impl From<BulletList> for SubBlockQuote
impl From<BulletList> for SubBlockQuote
Source§fn from(inner: BulletList) -> Self
fn from(inner: BulletList) -> Self
Converts to this type from the input type.
Source§impl From<BulletList> for SubFigure
impl From<BulletList> for SubFigure
Source§fn from(inner: BulletList) -> Self
fn from(inner: BulletList) -> Self
Converts to this type from the input type.
Source§impl From<BulletList> for SubFootnote
impl From<BulletList> for SubFootnote
Source§fn from(inner: BulletList) -> Self
fn from(inner: BulletList) -> Self
Converts to this type from the input type.
Source§impl From<BulletList> for SubSidebar
impl From<BulletList> for SubSidebar
Source§fn from(inner: BulletList) -> Self
fn from(inner: BulletList) -> Self
Converts to this type from the input type.
Source§impl From<BulletList> for SubStructure
impl From<BulletList> for SubStructure
Source§fn from(inner: BulletList) -> Self
fn from(inner: BulletList) -> Self
Converts to this type from the input type.
Source§impl From<BulletList> for SubTopic
impl From<BulletList> for SubTopic
Source§fn from(inner: BulletList) -> Self
fn from(inner: BulletList) -> Self
Converts to this type from the input type.
Source§impl HasChildren<ListItem> for BulletList
impl HasChildren<ListItem> for BulletList
Source§impl PartialEq for BulletList
impl PartialEq for BulletList
Source§impl Serialize for BulletList
impl Serialize for BulletList
impl StructuralPartialEq for BulletList
Auto Trait Implementations§
impl Freeze for BulletList
impl RefUnwindSafe for BulletList
impl Send for BulletList
impl Sync for BulletList
impl Unpin for BulletList
impl UnwindSafe for BulletList
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