Enum xso::UnknownChildPolicy
source · pub enum UnknownChildPolicy {
Fail,
Ignore,
}
Expand description
Configure how unknown child elements are handled.
Variants§
Implementations§
source§impl UnknownChildPolicy
impl UnknownChildPolicy
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 child 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 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 PartialEq for UnknownChildPolicy
impl PartialEq for UnknownChildPolicy
source§fn eq(&self, other: &UnknownChildPolicy) -> bool
fn eq(&self, other: &UnknownChildPolicy) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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