param

Struct param 

Source
#[repr(C)]
pub struct param {
Show 33 fields pub readformat: c_int, pub writeformat: c_int, pub charsetin: c_int, pub charsetin_src: uchar, pub latexin: uchar, pub utf8in: uchar, pub xmlin: uchar, pub nosplittitle: uchar, pub charsetout: c_int, pub charsetout_src: uchar, pub latexout: uchar, pub utf8out: uchar, pub utf8bom: uchar, pub xmlout: uchar, pub format_opts: c_int, pub addcount: c_int, pub output_raw: uchar, pub verbose: uchar, pub singlerefperfile: uchar, pub asis: slist, pub corps: slist, pub progname: *mut c_char, pub readf: Option<unsafe extern "C" fn(arg1: *mut FILE, arg2: *mut c_char, arg3: c_int, arg4: *mut c_int, arg5: *mut str, arg6: *mut str, arg7: *mut c_int) -> c_int>, pub processf: Option<unsafe extern "C" fn(arg1: *mut fields, arg2: *const c_char, arg3: *const c_char, arg4: c_long, arg5: *mut param) -> c_int>, pub cleanf: Option<unsafe extern "C" fn(arg1: *mut bibl, arg2: *mut param) -> c_int>, pub typef: Option<unsafe extern "C" fn(arg1: *mut fields, arg2: *const c_char, arg3: c_int, arg4: *mut param) -> c_int>, pub convertf: Option<unsafe extern "C" fn(arg1: *mut fields, arg2: *mut fields, arg3: c_int, arg4: *mut param) -> c_int>, pub headerf: Option<unsafe extern "C" fn(arg1: *mut FILE, arg2: *mut param)>, pub footerf: Option<unsafe extern "C" fn(arg1: *mut FILE)>, pub assemblef: Option<unsafe extern "C" fn(arg1: *mut fields, arg2: *mut fields, arg3: *mut param, arg4: c_ulong) -> c_int>, pub writef: Option<unsafe extern "C" fn(arg1: *mut fields, arg2: *mut FILE, arg3: *mut param, arg4: c_ulong) -> c_int>, pub all: *mut variants, pub nall: c_int,
}

Fields§

§readformat: c_int§writeformat: c_int§charsetin: c_int§charsetin_src: uchar§latexin: uchar§utf8in: uchar§xmlin: uchar§nosplittitle: uchar§charsetout: c_int§charsetout_src: uchar§latexout: uchar§utf8out: uchar§utf8bom: uchar§xmlout: uchar§format_opts: c_int§addcount: c_int§output_raw: uchar§verbose: uchar§singlerefperfile: uchar§asis: slist§corps: slist§progname: *mut c_char§readf: Option<unsafe extern "C" fn(arg1: *mut FILE, arg2: *mut c_char, arg3: c_int, arg4: *mut c_int, arg5: *mut str, arg6: *mut str, arg7: *mut c_int) -> c_int>§processf: Option<unsafe extern "C" fn(arg1: *mut fields, arg2: *const c_char, arg3: *const c_char, arg4: c_long, arg5: *mut param) -> c_int>§cleanf: Option<unsafe extern "C" fn(arg1: *mut bibl, arg2: *mut param) -> c_int>§typef: Option<unsafe extern "C" fn(arg1: *mut fields, arg2: *const c_char, arg3: c_int, arg4: *mut param) -> c_int>§convertf: Option<unsafe extern "C" fn(arg1: *mut fields, arg2: *mut fields, arg3: c_int, arg4: *mut param) -> c_int>§headerf: Option<unsafe extern "C" fn(arg1: *mut FILE, arg2: *mut param)>§footerf: Option<unsafe extern "C" fn(arg1: *mut FILE)>§assemblef: Option<unsafe extern "C" fn(arg1: *mut fields, arg2: *mut fields, arg3: *mut param, arg4: c_ulong) -> c_int>§writef: Option<unsafe extern "C" fn(arg1: *mut fields, arg2: *mut FILE, arg3: *mut param, arg4: c_ulong) -> c_int>§all: *mut variants§nall: c_int

Trait Implementations§

Source§

impl Clone for param

Source§

fn clone(&self) -> param

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 param

Source§

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

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

impl Copy for param

Auto Trait Implementations§

§

impl Freeze for param

§

impl RefUnwindSafe for param

§

impl !Send for param

§

impl !Sync for param

§

impl Unpin for param

§

impl UnwindSafe for param

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.