jbg85_dec_state

Struct jbg85_dec_state 

Source
#[repr(C)]
pub struct jbg85_dec_state {
Show 31 fields pub x0: c_ulong, pub y0: c_ulong, pub l0: c_ulong, pub options: c_int, pub mx: c_int, pub p: [c_int; 3], pub linebuf: *mut c_uchar, pub linebuf_len: usize, pub bpl: usize, pub tx: c_int, pub s: jbg_ardec_state, pub bie_len: c_ulong, pub buffer: [c_uchar; 20], pub buf_len: c_int, pub comment_skip: c_ulong, pub x: c_ulong, pub stripe: c_ulong, pub y: c_ulong, pub i: c_ulong, pub at_moves: c_int, pub at_line: [c_ulong; 1], pub at_tx: [c_int; 1], pub line_h1: c_ulong, pub line_h2: c_ulong, pub line_h3: c_ulong, pub pseudo: c_int, pub lntp: c_int, pub line_out: Option<unsafe extern "C" fn(s: *const jbg85_dec_state, start: *mut c_uchar, len: usize, y: c_ulong, file: *mut c_void) -> c_int>, pub file: *mut c_void, pub intr: c_int, pub end_of_bie: c_int,
}

Fields§

§x0: c_ulong§y0: c_ulong§l0: c_ulong§options: c_int§mx: c_int§p: [c_int; 3]§linebuf: *mut c_uchar§linebuf_len: usize§bpl: usize§tx: c_int§s: jbg_ardec_state§bie_len: c_ulong§buffer: [c_uchar; 20]§buf_len: c_int§comment_skip: c_ulong§x: c_ulong§stripe: c_ulong§y: c_ulong§i: c_ulong§at_moves: c_int§at_line: [c_ulong; 1]§at_tx: [c_int; 1]§line_h1: c_ulong§line_h2: c_ulong§line_h3: c_ulong§pseudo: c_int§lntp: c_int§line_out: Option<unsafe extern "C" fn(s: *const jbg85_dec_state, start: *mut c_uchar, len: usize, y: c_ulong, file: *mut c_void) -> c_int>§file: *mut c_void§intr: c_int§end_of_bie: c_int

Trait Implementations§

Source§

impl Clone for jbg85_dec_state

Source§

fn clone(&self) -> jbg85_dec_state

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for jbg85_dec_state

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for jbg85_dec_state

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.