#[repr(C)]pub struct _xmlParserInputBuffer {
pub context: *mut c_void,
pub readcallback: xmlInputReadCallback,
pub closecallback: xmlInputCloseCallback,
pub encoder: xmlCharEncodingHandlerPtr,
pub buffer: xmlBufPtr,
pub raw: xmlBufPtr,
pub compressed: c_int,
pub error: c_int,
pub rawconsumed: c_ulong,
}
Fields§
§context: *mut c_void
§readcallback: xmlInputReadCallback
§closecallback: xmlInputCloseCallback
§encoder: xmlCharEncodingHandlerPtr
§buffer: xmlBufPtr
§raw: xmlBufPtr
§compressed: c_int
§error: c_int
§rawconsumed: c_ulong
Trait Implementations§
Source§impl Clone for _xmlParserInputBuffer
impl Clone for _xmlParserInputBuffer
Source§fn clone(&self) -> _xmlParserInputBuffer
fn clone(&self) -> _xmlParserInputBuffer
Returns a copy 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 _xmlParserInputBuffer
impl Debug for _xmlParserInputBuffer
impl Copy for _xmlParserInputBuffer
Auto Trait Implementations§
impl Freeze for _xmlParserInputBuffer
impl RefUnwindSafe for _xmlParserInputBuffer
impl !Send for _xmlParserInputBuffer
impl !Sync for _xmlParserInputBuffer
impl Unpin for _xmlParserInputBuffer
impl UnwindSafe for _xmlParserInputBuffer
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