pub enum ArtifactSubtype<'a> {
Header,
Footer,
Watermark,
Custom(Name<'a>),
}
Expand description
The various subtypes of pagination artifacts.
Variants§
Header
Headers.
Footers.
Watermark
Background watermarks.
Custom(Name<'a>)
Custom subtype named according to ISO 32000-1:2008 Annex E.
Trait Implementations§
Source§impl<'a> Clone for ArtifactSubtype<'a>
impl<'a> Clone for ArtifactSubtype<'a>
Source§fn clone(&self) -> ArtifactSubtype<'a>
fn clone(&self) -> ArtifactSubtype<'a>
Returns a copy 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<'a> Debug for ArtifactSubtype<'a>
impl<'a> Debug for ArtifactSubtype<'a>
Source§impl<'a> PartialEq for ArtifactSubtype<'a>
impl<'a> PartialEq for ArtifactSubtype<'a>
impl<'a> StructuralPartialEq for ArtifactSubtype<'a>
Auto Trait Implementations§
impl<'a> Freeze for ArtifactSubtype<'a>
impl<'a> RefUnwindSafe for ArtifactSubtype<'a>
impl<'a> Send for ArtifactSubtype<'a>
impl<'a> Sync for ArtifactSubtype<'a>
impl<'a> Unpin for ArtifactSubtype<'a>
impl<'a> UnwindSafe for ArtifactSubtype<'a>
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