#[repr(C)]pub struct fz_output {Show 15 fields
pub state: *mut c_void,
pub write: fz_output_write_fn,
pub seek: fz_output_seek_fn,
pub tell: fz_output_tell_fn,
pub close: fz_output_close_fn,
pub drop: fz_output_drop_fn,
pub reset: fz_output_reset_fn,
pub as_stream: fz_stream_from_output_fn,
pub truncate: fz_truncate_fn,
pub closed: c_int,
pub bp: *mut c_char,
pub wp: *mut c_char,
pub ep: *mut c_char,
pub buffered: c_int,
pub bits: c_int,
}Fields§
§state: *mut c_void§write: fz_output_write_fn§seek: fz_output_seek_fn§tell: fz_output_tell_fn§close: fz_output_close_fn§drop: fz_output_drop_fn§reset: fz_output_reset_fn§as_stream: fz_stream_from_output_fn§truncate: fz_truncate_fn§closed: c_int§bp: *mut c_char§wp: *mut c_char§ep: *mut c_char§buffered: c_int§bits: c_intTrait Implementations§
Auto Trait Implementations§
impl Freeze for fz_output
impl RefUnwindSafe for fz_output
impl !Send for fz_output
impl !Sync for fz_output
impl Unpin for fz_output
impl UnwindSafe for fz_output
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