pub enum UnknownChildPolicy {
Discard,
Fail,
}
Expand description
Control how unknown children are handled.
The variants of this enum are referenced in the
#[xml(on_unknown_child = ..)]
which can be used on structs and
enum variants. The specified variant controls how children, which are not
handled by any member of the compound, are handled during parsing.
Variants§
Discard
All unknown children are discarded.
Fail
The first unknown child which is encountered generates a fatal parsing error.
This is the default policy.
Trait Implementations§
Source§impl Clone for UnknownChildPolicy
impl Clone for UnknownChildPolicy
Source§fn clone(&self) -> UnknownChildPolicy
fn clone(&self) -> UnknownChildPolicy
Returns a copy 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 UnknownChildPolicy
impl Debug for UnknownChildPolicy
Source§impl Default for UnknownChildPolicy
impl Default for UnknownChildPolicy
Source§fn default() -> UnknownChildPolicy
fn default() -> UnknownChildPolicy
Returns the “default value” for a type. Read more
Source§impl Hash for UnknownChildPolicy
impl Hash for UnknownChildPolicy
Source§impl Ord for UnknownChildPolicy
impl Ord for UnknownChildPolicy
Source§fn cmp(&self, other: &UnknownChildPolicy) -> Ordering
fn cmp(&self, other: &UnknownChildPolicy) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for UnknownChildPolicy
impl PartialEq for UnknownChildPolicy
Source§impl PartialOrd for UnknownChildPolicy
impl PartialOrd for UnknownChildPolicy
impl Copy for UnknownChildPolicy
impl Eq for UnknownChildPolicy
impl StructuralPartialEq for UnknownChildPolicy
Auto Trait Implementations§
impl Freeze for UnknownChildPolicy
impl RefUnwindSafe for UnknownChildPolicy
impl Send for UnknownChildPolicy
impl Sync for UnknownChildPolicy
impl Unpin for UnknownChildPolicy
impl UnwindSafe for UnknownChildPolicy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)