pub enum ReadableSectionRole {
Main,
Navigation,
Aside,
Footer,
Comments,
Related,
Unknown,
}Expand description
Readable semantic region role.
Variants§
Main
Primary content region.
Navigation region.
Aside
Sidebar or complementary content.
Footer or content information.
Comments
Comments or discussion region.
Related
Related links or related content.
Unknown
Unknown secondary region.
Trait Implementations§
Source§impl Clone for ReadableSectionRole
impl Clone for ReadableSectionRole
Source§fn clone(&self) -> ReadableSectionRole
fn clone(&self) -> ReadableSectionRole
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReadableSectionRole
impl Debug for ReadableSectionRole
Source§impl PartialEq for ReadableSectionRole
impl PartialEq for ReadableSectionRole
Source§fn eq(&self, other: &ReadableSectionRole) -> bool
fn eq(&self, other: &ReadableSectionRole) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ReadableSectionRole
impl Eq for ReadableSectionRole
impl StructuralPartialEq for ReadableSectionRole
Auto Trait Implementations§
impl Freeze for ReadableSectionRole
impl RefUnwindSafe for ReadableSectionRole
impl Send for ReadableSectionRole
impl Sync for ReadableSectionRole
impl Unpin for ReadableSectionRole
impl UnsafeUnpin for ReadableSectionRole
impl UnwindSafe for ReadableSectionRole
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