pub struct Heading {
pub text: String,
pub level: u32,
pub span: Range<usize>,
}Expand description
A heading in a document’s prose body.
The piece of a document a #locator names: prov carries a locator on a link
target and never resolves it, leaf’s Doc::locate
resolves one it is given, and this is the third corner — the locator you
would write for where the caret is now.
Fields§
§text: StringThe heading’s own words, without its # marker.
level: u321 for an # H1, 6 for an ###### H6.
span: Range<usize>Byte range of the whole heading line within the body text — the same
coordinates crate::BodyLink::span and the caret are in.
Trait Implementations§
impl Eq for Heading
impl StructuralPartialEq for Heading
Auto Trait Implementations§
impl Freeze for Heading
impl RefUnwindSafe for Heading
impl Send for Heading
impl Sync for Heading
impl Unpin for Heading
impl UnsafeUnpin for Heading
impl UnwindSafe for Heading
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.