#[repr(C)]pub enum xmlElementContentType {
XML_ELEMENT_CONTENT_PCDATA = 1,
XML_ELEMENT_CONTENT_ELEMENT = 2,
XML_ELEMENT_CONTENT_SEQ = 3,
XML_ELEMENT_CONTENT_OR = 4,
}Variants§
XML_ELEMENT_CONTENT_PCDATA = 1
XML_ELEMENT_CONTENT_ELEMENT = 2
XML_ELEMENT_CONTENT_SEQ = 3
XML_ELEMENT_CONTENT_OR = 4
Trait Implementations§
Source§impl Clone for xmlElementContentType
impl Clone for xmlElementContentType
Source§fn clone(&self) -> xmlElementContentType
fn clone(&self) -> xmlElementContentType
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 xmlElementContentType
Source§impl Debug for xmlElementContentType
impl Debug for xmlElementContentType
impl Eq for xmlElementContentType
Source§impl PartialEq for xmlElementContentType
impl PartialEq for xmlElementContentType
impl StructuralPartialEq for xmlElementContentType
Auto Trait Implementations§
impl Freeze for xmlElementContentType
impl RefUnwindSafe for xmlElementContentType
impl Send for xmlElementContentType
impl Sync for xmlElementContentType
impl Unpin for xmlElementContentType
impl UnsafeUnpin for xmlElementContentType
impl UnwindSafe for xmlElementContentType
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