pub enum BlockLevelRoleSubtype {
ParagraphLike,
List,
Table,
}Expand description
Subtypes of block-level structure roles, determining the layout and permitted attributes of the element.
Variants§
ParagraphLike
Block-level elements containing predominantly text content.
List
List-related elements, such as lists and list items.
Table
Table-related elements, such as tables and table rows.
Trait Implementations§
Source§impl Clone for BlockLevelRoleSubtype
impl Clone for BlockLevelRoleSubtype
Source§fn clone(&self) -> BlockLevelRoleSubtype
fn clone(&self) -> BlockLevelRoleSubtype
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 BlockLevelRoleSubtype
impl Debug for BlockLevelRoleSubtype
Source§impl Hash for BlockLevelRoleSubtype
impl Hash for BlockLevelRoleSubtype
Source§impl PartialEq for BlockLevelRoleSubtype
impl PartialEq for BlockLevelRoleSubtype
impl Copy for BlockLevelRoleSubtype
impl Eq for BlockLevelRoleSubtype
impl StructuralPartialEq for BlockLevelRoleSubtype
Auto Trait Implementations§
impl Freeze for BlockLevelRoleSubtype
impl RefUnwindSafe for BlockLevelRoleSubtype
impl Send for BlockLevelRoleSubtype
impl Sync for BlockLevelRoleSubtype
impl Unpin for BlockLevelRoleSubtype
impl UnwindSafe for BlockLevelRoleSubtype
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