pub struct PdfActionRemoteGoTo { /* private fields */ }Implementations§
Source§impl PdfActionRemoteGoTo
impl PdfActionRemoteGoTo
pub fn new(page_index: usize, point: PdfPoint, url: &str) -> Result<Self>
pub fn page_index(&self) -> usize
pub fn set_page_index(&self, page_index: usize)
pub fn point(&self) -> PdfPoint
pub fn set_point(&self, point: PdfPoint)
pub fn url(&self) -> Option<String>
pub fn set_url(&self, url: &str) -> Result<()>
pub fn action_type(&self) -> Option<String>
Trait Implementations§
Source§impl Clone for PdfActionRemoteGoTo
impl Clone for PdfActionRemoteGoTo
Source§fn clone(&self) -> PdfActionRemoteGoTo
fn clone(&self) -> PdfActionRemoteGoTo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PdfActionRemoteGoTo
impl Debug for PdfActionRemoteGoTo
impl PdfActionLike for PdfActionRemoteGoTo
Auto Trait Implementations§
impl Freeze for PdfActionRemoteGoTo
impl RefUnwindSafe for PdfActionRemoteGoTo
impl !Send for PdfActionRemoteGoTo
impl !Sync for PdfActionRemoteGoTo
impl Unpin for PdfActionRemoteGoTo
impl UnsafeUnpin for PdfActionRemoteGoTo
impl UnwindSafe for PdfActionRemoteGoTo
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