Struct libxml::bindings::_xmlParserInput[][src]

#[repr(C)]pub struct _xmlParserInput {
    pub buf: xmlParserInputBufferPtr,
    pub filename: *const c_char,
    pub directory: *const c_char,
    pub base: *const xmlChar,
    pub cur: *const xmlChar,
    pub end: *const xmlChar,
    pub length: c_int,
    pub line: c_int,
    pub col: c_int,
    pub consumed: c_ulong,
    pub free: xmlParserInputDeallocate,
    pub encoding: *const xmlChar,
    pub version: *const xmlChar,
    pub standalone: c_int,
    pub id: c_int,
}

Fields

buf: xmlParserInputBufferPtrfilename: *const c_chardirectory: *const c_charbase: *const xmlCharcur: *const xmlCharend: *const xmlCharlength: c_intline: c_intcol: c_intconsumed: c_ulongfree: xmlParserInputDeallocateencoding: *const xmlCharversion: *const xmlCharstandalone: c_intid: c_int

Trait Implementations

impl Clone for _xmlParserInput[src]

impl Copy for _xmlParserInput[src]

impl Debug for _xmlParserInput[src]

Auto Trait Implementations

impl RefUnwindSafe for _xmlParserInput

impl !Send for _xmlParserInput

impl !Sync for _xmlParserInput

impl Unpin for _xmlParserInput

impl UnwindSafe for _xmlParserInput

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.