#[repr(C)]pub struct fz_document_writer {
pub begin_page: fz_document_writer_begin_page_fn,
pub end_page: fz_document_writer_end_page_fn,
pub close_writer: fz_document_writer_close_writer_fn,
pub drop_writer: fz_document_writer_drop_writer_fn,
pub dev: *mut fz_device,
}Expand description
Structure is public to allow other structures to
be derived from it. Do not access members directly.
Fields§
§begin_page: fz_document_writer_begin_page_fn§end_page: fz_document_writer_end_page_fn§close_writer: fz_document_writer_close_writer_fn§drop_writer: fz_document_writer_drop_writer_fn§dev: *mut fz_deviceTrait Implementations§
Source§impl Clone for fz_document_writer
impl Clone for fz_document_writer
Source§fn clone(&self) -> fz_document_writer
fn clone(&self) -> fz_document_writer
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 fz_document_writer
impl Debug for fz_document_writer
impl Copy for fz_document_writer
Auto Trait Implementations§
impl Freeze for fz_document_writer
impl RefUnwindSafe for fz_document_writer
impl !Send for fz_document_writer
impl !Sync for fz_document_writer
impl Unpin for fz_document_writer
impl UnwindSafe for fz_document_writer
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