pub struct BookmarkEntry {
pub title: String,
pub page_index: usize,
pub y: f64,
}Expand description
A bookmark entry collected during layout.
Fields§
§title: String§page_index: usize§y: f64Trait Implementations§
Source§impl Clone for BookmarkEntry
impl Clone for BookmarkEntry
Source§fn clone(&self) -> BookmarkEntry
fn clone(&self) -> BookmarkEntry
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 BookmarkEntry
impl Debug for BookmarkEntry
Auto Trait Implementations§
impl Freeze for BookmarkEntry
impl RefUnwindSafe for BookmarkEntry
impl Send for BookmarkEntry
impl Sync for BookmarkEntry
impl Unpin for BookmarkEntry
impl UnsafeUnpin for BookmarkEntry
impl UnwindSafe for BookmarkEntry
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