Enum xso::UnknownAttributePolicy
source · pub enum UnknownAttributePolicy {
Fail,
Ignore,
}
Expand description
Configure how unknown attributes are handled.
Variants§
Implementations§
source§impl UnknownAttributePolicy
impl UnknownAttributePolicy
sourcepub fn trigger(&self, msg: &'static str) -> Result<(), Error>
pub fn trigger(&self, msg: &'static str) -> Result<(), Error>
Return a result describing the result of triggering the attribute policy.
In other words, this returns an error iff the policy is set to
Fail
.
Note: This function is not to be considered part of the public
API! It is only marked pub
because it needs to be called from
macro-generated code! Its signature and behavior may change without
notice and without major version bump at any time.
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 PartialEq for UnknownAttributePolicy
impl PartialEq for UnknownAttributePolicy
source§fn eq(&self, other: &UnknownAttributePolicy) -> bool
fn eq(&self, other: &UnknownAttributePolicy) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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