pub enum OpenContentMode {
None,
Interleave,
Suffix,
}Expand description
XSD 1.1: Open content mode
Variants§
None
No open content
Interleave
Open content can appear interleaved
Suffix
Open content can appear at the end
Trait Implementations§
Source§impl Clone for OpenContentMode
impl Clone for OpenContentMode
Source§fn clone(&self) -> OpenContentMode
fn clone(&self) -> OpenContentMode
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 OpenContentMode
Source§impl Debug for OpenContentMode
impl Debug for OpenContentMode
Source§impl Default for OpenContentMode
impl Default for OpenContentMode
Source§fn default() -> OpenContentMode
fn default() -> OpenContentMode
Returns the “default value” for a type. Read more
impl Eq for OpenContentMode
Source§impl From<OpenContentMode> for OpenContentMode
impl From<OpenContentMode> for OpenContentMode
Source§fn from(m: OpenContentMode) -> Self
fn from(m: OpenContentMode) -> Self
Converts to this type from the input type.
Source§impl From<OpenContentMode> for OpenContentMode
impl From<OpenContentMode> for OpenContentMode
Source§fn from(m: OpenContentMode) -> Self
fn from(m: OpenContentMode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for OpenContentMode
impl PartialEq for OpenContentMode
Source§fn eq(&self, other: &OpenContentMode) -> bool
fn eq(&self, other: &OpenContentMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OpenContentMode
Auto Trait Implementations§
impl Freeze for OpenContentMode
impl RefUnwindSafe for OpenContentMode
impl Send for OpenContentMode
impl Sync for OpenContentMode
impl Unpin for OpenContentMode
impl UnsafeUnpin for OpenContentMode
impl UnwindSafe for OpenContentMode
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