pub struct AppearanceStream {
pub content: Vec<u8>,
pub resources: Dictionary,
pub bbox: [f64; 4],
}Expand description
Appearance stream for a form field
Fields§
§content: Vec<u8>The content stream data
resources: DictionaryResources dictionary (fonts, colors, etc.)
bbox: [f64; 4]Bounding box for the appearance
Implementations§
Trait Implementations§
Source§impl Clone for AppearanceStream
impl Clone for AppearanceStream
Source§fn clone(&self) -> AppearanceStream
fn clone(&self) -> AppearanceStream
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 AppearanceStream
impl RefUnwindSafe for AppearanceStream
impl Send for AppearanceStream
impl Sync for AppearanceStream
impl Unpin for AppearanceStream
impl UnwindSafe for AppearanceStream
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