pub struct Link {
pub rect: [f32; 4],
pub target: LinkTarget,
}Expand description
A clickable rectangle, lowered into a LinkAnnotation on the page.
Fields§
§rect: [f32; 4]The clickable area, [x0, y0, x1, y1] in the page’s user space.
target: LinkTargetWhere the link goes.
Trait Implementations§
impl StructuralPartialEq for Link
Auto Trait Implementations§
impl Freeze for Link
impl RefUnwindSafe for Link
impl Send for Link
impl Sync for Link
impl Unpin for Link
impl UnsafeUnpin for Link
impl UnwindSafe for Link
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