#[repr(C)]pub enum XmlElementTypeVal {
XmlElementTypeUndefined = 0,
XmlElementTypeEmpty = 1,
XmlElementTypeAny = 2,
XmlElementTypeMixed = 3,
XmlElementTypeElement = 4,
}
Expand description
The different possibilities for an element content type.
Variants§
XmlElementTypeUndefined = 0
XmlElementTypeEmpty = 1
XmlElementTypeAny = 2
XmlElementTypeMixed = 3
XmlElementTypeElement = 4
Trait Implementations§
Source§impl Clone for XmlElementTypeVal
impl Clone for XmlElementTypeVal
Source§fn clone(&self) -> XmlElementTypeVal
fn clone(&self) -> XmlElementTypeVal
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 XmlElementTypeVal
impl Debug for XmlElementTypeVal
Source§impl PartialEq for XmlElementTypeVal
impl PartialEq for XmlElementTypeVal
impl Copy for XmlElementTypeVal
impl Eq for XmlElementTypeVal
impl StructuralPartialEq for XmlElementTypeVal
Auto Trait Implementations§
impl Freeze for XmlElementTypeVal
impl RefUnwindSafe for XmlElementTypeVal
impl Send for XmlElementTypeVal
impl Sync for XmlElementTypeVal
impl Unpin for XmlElementTypeVal
impl UnwindSafe for XmlElementTypeVal
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