pub enum UnknownAttributePolicy {
Discard,
Fail,
}
Expand description
Control how unknown attributes are handled.
The variants of this enum are referenced in the
#[xml(on_unknown_attribute = ..)]
which can be used on structs and
enum variants. The specified variant controls how attributes, which are
not handled by any member of the compound, are handled during parsing.
Variants§
Discard
All unknown attributes are discarded.
Fail
The first unknown attribute which is encountered generates a fatal parsing error.
This is the default policy.
Trait Implementations§
Source§impl Clone for UnknownAttributePolicy
impl Clone for UnknownAttributePolicy
Source§fn clone(&self) -> UnknownAttributePolicy
fn clone(&self) -> UnknownAttributePolicy
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 UnknownAttributePolicy
impl Debug for UnknownAttributePolicy
Source§impl Default for UnknownAttributePolicy
impl Default for UnknownAttributePolicy
Source§fn default() -> UnknownAttributePolicy
fn default() -> UnknownAttributePolicy
Returns the “default value” for a type. Read more
Source§impl Hash for UnknownAttributePolicy
impl Hash for UnknownAttributePolicy
Source§impl Ord for UnknownAttributePolicy
impl Ord for UnknownAttributePolicy
Source§fn cmp(&self, other: &UnknownAttributePolicy) -> Ordering
fn cmp(&self, other: &UnknownAttributePolicy) -> 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 UnknownAttributePolicy
impl PartialEq for UnknownAttributePolicy
Source§impl PartialOrd for UnknownAttributePolicy
impl PartialOrd for UnknownAttributePolicy
impl Copy for UnknownAttributePolicy
impl Eq for UnknownAttributePolicy
impl StructuralPartialEq for UnknownAttributePolicy
Auto Trait Implementations§
impl Freeze for UnknownAttributePolicy
impl RefUnwindSafe for UnknownAttributePolicy
impl Send for UnknownAttributePolicy
impl Sync for UnknownAttributePolicy
impl Unpin for UnknownAttributePolicy
impl UnwindSafe for UnknownAttributePolicy
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