pub struct Hyperlink {
pub bbox: BBox,
pub uri: String,
}Expand description
A resolved hyperlink extracted from a PDF page.
Represents a Link annotation with its bounding box and resolved URI target.
Created by filtering annotations with /Subtype /Link and resolving their
/A (action) or /Dest entries.
Fields§
§bbox: BBoxBounding box of the link on the page.
uri: StringThe resolved URI or destination string.
Trait Implementations§
impl StructuralPartialEq for Hyperlink
Auto Trait Implementations§
impl Freeze for Hyperlink
impl RefUnwindSafe for Hyperlink
impl Send for Hyperlink
impl Sync for Hyperlink
impl Unpin for Hyperlink
impl UnsafeUnpin for Hyperlink
impl UnwindSafe for Hyperlink
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