#[repr(C)]pub struct fz_compressed_buffer {
pub refs: c_int,
pub params: fz_compression_params,
pub buffer: *mut fz_buffer,
}
Expand description
Buffers of compressed data; typically for the source data
for images.
Fields§
§refs: c_int
§params: fz_compression_params
§buffer: *mut fz_buffer
Trait Implementations§
Source§impl Clone for fz_compressed_buffer
impl Clone for fz_compressed_buffer
Source§fn clone(&self) -> fz_compressed_buffer
fn clone(&self) -> fz_compressed_buffer
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for fz_compressed_buffer
Auto Trait Implementations§
impl Freeze for fz_compressed_buffer
impl RefUnwindSafe for fz_compressed_buffer
impl !Send for fz_compressed_buffer
impl !Sync for fz_compressed_buffer
impl Unpin for fz_compressed_buffer
impl UnwindSafe for fz_compressed_buffer
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