Struct libxml::bindings::_xmlCharEncodingHandler[][src]

#[repr(C)]pub struct _xmlCharEncodingHandler {
    pub name: *mut c_char,
    pub input: xmlCharEncodingInputFunc,
    pub output: xmlCharEncodingOutputFunc,
    pub iconv_in: iconv_t,
    pub iconv_out: iconv_t,
    pub uconv_in: *mut uconv_t,
    pub uconv_out: *mut uconv_t,
}

Fields

name: *mut c_charinput: xmlCharEncodingInputFuncoutput: xmlCharEncodingOutputFunciconv_in: iconv_ticonv_out: iconv_tuconv_in: *mut uconv_tuconv_out: *mut uconv_t

Trait Implementations

impl Clone for _xmlCharEncodingHandler[src]

impl Copy for _xmlCharEncodingHandler[src]

impl Debug for _xmlCharEncodingHandler[src]

Auto Trait Implementations

impl RefUnwindSafe for _xmlCharEncodingHandler

impl !Send for _xmlCharEncodingHandler

impl !Sync for _xmlCharEncodingHandler

impl Unpin for _xmlCharEncodingHandler

impl UnwindSafe for _xmlCharEncodingHandler

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.