pub struct XmlParserCtxt {
pub options: i32,
pub last_error: Option<XmlError>,
pub doc: Option<XmlDoc>,
}Expand description
Parser context (xmlParserCtxt).
Fields§
§options: i32§last_error: Option<XmlError>§doc: Option<XmlDoc>Trait Implementations§
Source§impl Debug for XmlParserCtxt
impl Debug for XmlParserCtxt
Source§impl Default for XmlParserCtxt
impl Default for XmlParserCtxt
Source§fn default() -> XmlParserCtxt
fn default() -> XmlParserCtxt
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for XmlParserCtxt
impl RefUnwindSafe for XmlParserCtxt
impl Send for XmlParserCtxt
impl Sync for XmlParserCtxt
impl Unpin for XmlParserCtxt
impl UnsafeUnpin for XmlParserCtxt
impl UnwindSafe for XmlParserCtxt
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