pub enum BlockRole {
Body,
Paragraph,
Heading(u8),
ListItem,
FigureCaption,
}Expand description
Semantic block role for computed styles.
Variants§
Body
Body text.
Paragraph
Paragraph block.
Heading(u8)
Heading block by level.
ListItem
List item block.
FigureCaption
Figure caption block.
Trait Implementations§
impl Copy for BlockRole
impl Eq for BlockRole
impl StructuralPartialEq for BlockRole
Auto Trait Implementations§
impl Freeze for BlockRole
impl RefUnwindSafe for BlockRole
impl Send for BlockRole
impl Sync for BlockRole
impl Unpin for BlockRole
impl UnsafeUnpin for BlockRole
impl UnwindSafe for BlockRole
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