#[repr(C)]pub enum xmlDocProperties {
XML_DOC_WELLFORMED = 1,
XML_DOC_NSVALID = 2,
XML_DOC_OLD10 = 4,
XML_DOC_DTDVALID = 8,
XML_DOC_XINCLUDE = 16,
XML_DOC_USERBUILT = 32,
XML_DOC_INTERNAL = 64,
XML_DOC_HTML = 128,
}Expand description
Document properties flags.
Variants§
XML_DOC_WELLFORMED = 1
XML_DOC_NSVALID = 2
XML_DOC_OLD10 = 4
XML_DOC_DTDVALID = 8
XML_DOC_XINCLUDE = 16
XML_DOC_USERBUILT = 32
XML_DOC_INTERNAL = 64
XML_DOC_HTML = 128
Trait Implementations§
Source§impl Clone for xmlDocProperties
impl Clone for xmlDocProperties
Source§fn clone(&self) -> xmlDocProperties
fn clone(&self) -> xmlDocProperties
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for xmlDocProperties
Source§impl Debug for xmlDocProperties
impl Debug for xmlDocProperties
impl Eq for xmlDocProperties
Source§impl PartialEq for xmlDocProperties
impl PartialEq for xmlDocProperties
impl StructuralPartialEq for xmlDocProperties
Auto Trait Implementations§
impl Freeze for xmlDocProperties
impl RefUnwindSafe for xmlDocProperties
impl Send for xmlDocProperties
impl Sync for xmlDocProperties
impl Unpin for xmlDocProperties
impl UnsafeUnpin for xmlDocProperties
impl UnwindSafe for xmlDocProperties
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