pub struct ImageParams {
pub dict: Dict,
pub data: Vec<u8>,
}Expand description
An inline image (BI ... ID ... EI) with its dictionary keys and
colorspace abbreviations expanded to their canonical names
(e.g. /BPC -> /BitsPerComponent, /RGB -> /DeviceRGB).
Fields§
§dict: Dict§data: Vec<u8>Trait Implementations§
Source§impl Clone for ImageParams
impl Clone for ImageParams
Source§fn clone(&self) -> ImageParams
fn clone(&self) -> ImageParams
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 ImageParams
impl Debug for ImageParams
Source§impl PartialEq for ImageParams
impl PartialEq for ImageParams
impl StructuralPartialEq for ImageParams
Auto Trait Implementations§
impl Freeze for ImageParams
impl RefUnwindSafe for ImageParams
impl Send for ImageParams
impl Sync for ImageParams
impl Unpin for ImageParams
impl UnsafeUnpin for ImageParams
impl UnwindSafe for ImageParams
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