#[repr(C)]pub struct _xmlParserInput {Show 15 fields
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: xmlParserInputBufferPtr§filename: *const c_char§directory: *const c_char§base: *const xmlChar§cur: *const xmlChar§end: *const xmlChar§length: c_int§line: c_int§col: c_int§consumed: c_ulong§free: xmlParserInputDeallocate§encoding: *const xmlChar§version: *const xmlChar§standalone: c_int§id: c_intTrait Implementations§
Source§impl Clone for _xmlParserInput
impl Clone for _xmlParserInput
Source§fn clone(&self) -> _xmlParserInput
fn clone(&self) -> _xmlParserInput
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 _xmlParserInput
impl Debug for _xmlParserInput
impl Copy for _xmlParserInput
Auto Trait Implementations§
impl Freeze for _xmlParserInput
impl RefUnwindSafe for _xmlParserInput
impl !Send for _xmlParserInput
impl !Sync for _xmlParserInput
impl Unpin for _xmlParserInput
impl UnwindSafe for _xmlParserInput
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