pub struct InlineImage {
pub dict: Dict,
pub data: Box<[u8]>,
}Expand description
An inline image (BI … ID … EI), already separated into its dictionary
and its raw sample bytes by the tokenizer (ISO 32000-1 §8.9.7).
Fields§
§dict: DictThe image dictionary with abbreviations expanded and /Subtype /Image
established.
data: Box<[u8]>The bytes between ID and the terminating EI, still filtered.
Trait Implementations§
Source§impl Clone for InlineImage
impl Clone for InlineImage
Source§fn clone(&self) -> InlineImage
fn clone(&self) -> InlineImage
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 InlineImage
impl Debug for InlineImage
Source§impl PartialEq for InlineImage
impl PartialEq for InlineImage
impl StructuralPartialEq for InlineImage
Auto Trait Implementations§
impl Freeze for InlineImage
impl RefUnwindSafe for InlineImage
impl Send for InlineImage
impl Sync for InlineImage
impl Unpin for InlineImage
impl UnsafeUnpin for InlineImage
impl UnwindSafe for InlineImage
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