#[repr(C)]pub struct fz_text_decoder {
pub decode_bound: Option<unsafe extern "C" fn(dec: *mut fz_text_decoder, input: *mut c_uchar, n: c_int) -> c_int>,
pub decode_size: Option<unsafe extern "C" fn(dec: *mut fz_text_decoder, input: *mut c_uchar, n: c_int) -> c_int>,
pub decode: Option<unsafe extern "C" fn(dec: *mut fz_text_decoder, output: *mut c_char, input: *mut c_uchar, n: c_int)>,
pub table1: *mut c_void,
pub table2: *mut c_void,
}Fields§
§decode_bound: Option<unsafe extern "C" fn(dec: *mut fz_text_decoder, input: *mut c_uchar, n: c_int) -> c_int>§decode_size: Option<unsafe extern "C" fn(dec: *mut fz_text_decoder, input: *mut c_uchar, n: c_int) -> c_int>§decode: Option<unsafe extern "C" fn(dec: *mut fz_text_decoder, output: *mut c_char, input: *mut c_uchar, n: c_int)>§table1: *mut c_void§table2: *mut c_voidTrait Implementations§
Source§impl Clone for fz_text_decoder
impl Clone for fz_text_decoder
Source§fn clone(&self) -> fz_text_decoder
fn clone(&self) -> fz_text_decoder
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_text_decoder
impl Debug for fz_text_decoder
impl Copy for fz_text_decoder
Auto Trait Implementations§
impl Freeze for fz_text_decoder
impl RefUnwindSafe for fz_text_decoder
impl !Send for fz_text_decoder
impl !Sync for fz_text_decoder
impl Unpin for fz_text_decoder
impl UnwindSafe for fz_text_decoder
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