#[repr(i32)]pub enum PdfActionNamedName {
None = 0,
NextPage = 1,
PreviousPage = 2,
FirstPage = 3,
LastPage = 4,
GoBack = 5,
GoForward = 6,
GoToPage = 7,
Find = 8,
Print = 9,
ZoomIn = 10,
ZoomOut = 11,
}Variants§
None = 0
NextPage = 1
PreviousPage = 2
FirstPage = 3
LastPage = 4
GoBack = 5
GoForward = 6
GoToPage = 7
Find = 8
Print = 9
ZoomIn = 10
ZoomOut = 11
Implementations§
Trait Implementations§
Source§impl Clone for PdfActionNamedName
impl Clone for PdfActionNamedName
Source§fn clone(&self) -> PdfActionNamedName
fn clone(&self) -> PdfActionNamedName
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 PdfActionNamedName
impl Debug for PdfActionNamedName
Source§impl PartialEq for PdfActionNamedName
impl PartialEq for PdfActionNamedName
Source§fn eq(&self, other: &PdfActionNamedName) -> bool
fn eq(&self, other: &PdfActionNamedName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PdfActionNamedName
impl Eq for PdfActionNamedName
impl StructuralPartialEq for PdfActionNamedName
Auto Trait Implementations§
impl Freeze for PdfActionNamedName
impl RefUnwindSafe for PdfActionNamedName
impl Send for PdfActionNamedName
impl Sync for PdfActionNamedName
impl Unpin for PdfActionNamedName
impl UnsafeUnpin for PdfActionNamedName
impl UnwindSafe for PdfActionNamedName
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