pub struct GeneratedAppearance {
pub bbox: Rect,
pub matrix: Matrix,
pub resources: PdfDict,
pub content: Vec<u8>,
}Expand description
A synthesized appearance stream for a widget the producer left without one
(or that /NeedAppearances asks the viewer to regenerate). Mirrors a form
XObject: a /BBox, /Matrix, /Resources and a content byte stream.
Fields§
§bbox: Rect§matrix: Matrix§resources: PdfDict§content: Vec<u8>Trait Implementations§
Source§impl Clone for GeneratedAppearance
impl Clone for GeneratedAppearance
Source§fn clone(&self) -> GeneratedAppearance
fn clone(&self) -> GeneratedAppearance
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 moreAuto Trait Implementations§
impl Freeze for GeneratedAppearance
impl RefUnwindSafe for GeneratedAppearance
impl Send for GeneratedAppearance
impl Sync for GeneratedAppearance
impl Unpin for GeneratedAppearance
impl UnsafeUnpin for GeneratedAppearance
impl UnwindSafe for GeneratedAppearance
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