pub struct AnnotationAppearance {
pub normal: Option<ObjectId>,
pub rollover: Option<ObjectId>,
pub down: Option<ObjectId>,
}Expand description
Resolved appearance stream object IDs for an annotation.
Fields§
§normal: Option<ObjectId>Normal appearance stream (/AP/N).
rollover: Option<ObjectId>Rollover appearance stream (/AP/R).
down: Option<ObjectId>Down (mouse-press) appearance stream (/AP/D).
Trait Implementations§
Source§impl Clone for AnnotationAppearance
impl Clone for AnnotationAppearance
Source§fn clone(&self) -> AnnotationAppearance
fn clone(&self) -> AnnotationAppearance
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for AnnotationAppearance
impl RefUnwindSafe for AnnotationAppearance
impl Send for AnnotationAppearance
impl Sync for AnnotationAppearance
impl Unpin for AnnotationAppearance
impl UnsafeUnpin for AnnotationAppearance
impl UnwindSafe for AnnotationAppearance
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