pub enum MissingReferencedObjectBehaviour {
Skip,
Error,
}Expand description
Should missing DWARF objects referenced by executables be skipped or result in an error?
Referenced objects that are still missing when the DWARF package is finished will result in an error.
Variants§
Skip
Skip missing referenced DWARF objects - useful if this is expected, i.e. the path in the executable is wrong, but the referenced object will be found because it is an input.
Error
Error when encountering missing referenced DWARF objects.
Implementations§
Source§impl MissingReferencedObjectBehaviour
impl MissingReferencedObjectBehaviour
Sourcepub fn skip_missing(&self) -> bool
pub fn skip_missing(&self) -> bool
Should missing referenced objects be skipped?
Trait Implementations§
Source§impl Clone for MissingReferencedObjectBehaviour
impl Clone for MissingReferencedObjectBehaviour
Source§fn clone(&self) -> MissingReferencedObjectBehaviour
fn clone(&self) -> MissingReferencedObjectBehaviour
Returns a duplicate 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 PartialEq for MissingReferencedObjectBehaviour
impl PartialEq for MissingReferencedObjectBehaviour
Source§fn eq(&self, other: &MissingReferencedObjectBehaviour) -> bool
fn eq(&self, other: &MissingReferencedObjectBehaviour) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MissingReferencedObjectBehaviour
impl Eq for MissingReferencedObjectBehaviour
impl StructuralPartialEq for MissingReferencedObjectBehaviour
Auto Trait Implementations§
impl Freeze for MissingReferencedObjectBehaviour
impl RefUnwindSafe for MissingReferencedObjectBehaviour
impl Send for MissingReferencedObjectBehaviour
impl Sync for MissingReferencedObjectBehaviour
impl Unpin for MissingReferencedObjectBehaviour
impl UnsafeUnpin for MissingReferencedObjectBehaviour
impl UnwindSafe for MissingReferencedObjectBehaviour
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.