pub struct PdfRawStream {
pub dict: PdfDict,
pub contents: Vec<u8>,
}Expand description
A PDF stream with raw byte contents.
Fields§
§dict: PdfDict§contents: Vec<u8>Implementations§
Trait Implementations§
Source§impl Clone for PdfRawStream
impl Clone for PdfRawStream
Source§fn clone(&self) -> PdfRawStream
fn clone(&self) -> PdfRawStream
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 moreSource§impl Debug for PdfRawStream
impl Debug for PdfRawStream
Source§impl Display for PdfRawStream
impl Display for PdfRawStream
Source§impl PartialEq for PdfRawStream
impl PartialEq for PdfRawStream
Source§impl PdfObjectTrait for PdfRawStream
impl PdfObjectTrait for PdfRawStream
Source§fn size_in_bytes(&self) -> usize
fn size_in_bytes(&self) -> usize
Return the size in bytes when serialized.
Auto Trait Implementations§
impl Freeze for PdfRawStream
impl RefUnwindSafe for PdfRawStream
impl Send for PdfRawStream
impl Sync for PdfRawStream
impl Unpin for PdfRawStream
impl UnsafeUnpin for PdfRawStream
impl UnwindSafe for PdfRawStream
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