pub struct RowLink {
pub start: usize,
pub end: usize,
pub url: String,
}Expand description
Where a URL sits on a pager row: chars start..end of its text,
and the whole URL they belong to.
Fields§
§start: usize§end: usize§url: StringTrait Implementations§
impl StructuralPartialEq for RowLink
Auto Trait Implementations§
impl Freeze for RowLink
impl RefUnwindSafe for RowLink
impl Send for RowLink
impl Sync for RowLink
impl Unpin for RowLink
impl UnsafeUnpin for RowLink
impl UnwindSafe for RowLink
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