pub struct InlineSpan {
pub start: u32,
pub len: u32,
}Expand description
A range of inline elements stored contiguously in the inline pool.
Fields§
§start: u32§len: u32Implementations§
Trait Implementations§
Source§impl Clone for InlineSpan
impl Clone for InlineSpan
Source§fn clone(&self) -> InlineSpan
fn clone(&self) -> InlineSpan
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 InlineSpan
impl Debug for InlineSpan
Source§impl<'src, const MAX_INLINE_DEPTH: u8, const INLINE_STACK_CAP: usize> Index<InlineSpan> for MarkdownFile<'src, MAX_INLINE_DEPTH, INLINE_STACK_CAP>
impl<'src, const MAX_INLINE_DEPTH: u8, const INLINE_STACK_CAP: usize> Index<InlineSpan> for MarkdownFile<'src, MAX_INLINE_DEPTH, INLINE_STACK_CAP>
Source§impl PartialEq for InlineSpan
impl PartialEq for InlineSpan
impl Copy for InlineSpan
impl Eq for InlineSpan
impl StructuralPartialEq for InlineSpan
Auto Trait Implementations§
impl Freeze for InlineSpan
impl RefUnwindSafe for InlineSpan
impl Send for InlineSpan
impl Sync for InlineSpan
impl Unpin for InlineSpan
impl UnsafeUnpin for InlineSpan
impl UnwindSafe for InlineSpan
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