pub enum MissingAction {
Error,
Print,
PrintInfo,
Allow,
}Expand description
Behavior when reachable objects are missing.
Variants§
Error
Fail traversal when a referenced object is missing.
Continue traversal and report each missing object.
PrintInfo
Continue traversal and report missing objects with inferred metadata.
Allow
Continue traversal and silently ignore missing objects.
Trait Implementations§
Source§impl Clone for MissingAction
impl Clone for MissingAction
Source§fn clone(&self) -> MissingAction
fn clone(&self) -> MissingAction
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 MissingAction
Source§impl Debug for MissingAction
impl Debug for MissingAction
impl Eq for MissingAction
Source§impl PartialEq for MissingAction
impl PartialEq for MissingAction
Source§fn eq(&self, other: &MissingAction) -> bool
fn eq(&self, other: &MissingAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MissingAction
Auto Trait Implementations§
impl Freeze for MissingAction
impl RefUnwindSafe for MissingAction
impl Send for MissingAction
impl Sync for MissingAction
impl Unpin for MissingAction
impl UnsafeUnpin for MissingAction
impl UnwindSafe for MissingAction
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