pub struct blaze_normalize_reason(/* private fields */);Expand description
The reason why normalization failed.
The reason is generally only meant as a hint. Reasons reported may change over time and, hence, should not be relied upon for the correctness of the application.
Implementations§
Source§impl blaze_normalize_reason
impl blaze_normalize_reason
Sourcepub const UNMAPPED: blaze_normalize_reason
pub const UNMAPPED: blaze_normalize_reason
The absolute address was not found in the corresponding process’ virtual memory map.
Sourcepub const MISSING_COMPONENT: blaze_normalize_reason
pub const MISSING_COMPONENT: blaze_normalize_reason
The /proc/<pid>/maps entry corresponding to the address does not have
a component (file system path, object, …) associated with it.
Sourcepub const UNSUPPORTED: blaze_normalize_reason
pub const UNSUPPORTED: blaze_normalize_reason
The address belonged to an entity that is currently unsupported.
Sourcepub const INVALID_FILE_OFFSET: blaze_normalize_reason
pub const INVALID_FILE_OFFSET: blaze_normalize_reason
The file offset does not map to a valid piece of code/data.
Sourcepub const MISSING_SYMS: blaze_normalize_reason
pub const MISSING_SYMS: blaze_normalize_reason
The symbolization source has no or no relevant symbols.
Sourcepub const UNKNOWN_ADDR: blaze_normalize_reason
pub const UNKNOWN_ADDR: blaze_normalize_reason
The address could not be found in the symbolization source.
Trait Implementations§
Source§impl Clone for blaze_normalize_reason
impl Clone for blaze_normalize_reason
Source§fn clone(&self) -> blaze_normalize_reason
fn clone(&self) -> blaze_normalize_reason
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 Debug for blaze_normalize_reason
impl Debug for blaze_normalize_reason
Source§impl From<Reason> for blaze_normalize_reason
impl From<Reason> for blaze_normalize_reason
Source§impl PartialEq for blaze_normalize_reason
impl PartialEq for blaze_normalize_reason
impl Copy for blaze_normalize_reason
impl Eq for blaze_normalize_reason
impl StructuralPartialEq for blaze_normalize_reason
Auto Trait Implementations§
impl Freeze for blaze_normalize_reason
impl RefUnwindSafe for blaze_normalize_reason
impl Send for blaze_normalize_reason
impl Sync for blaze_normalize_reason
impl Unpin for blaze_normalize_reason
impl UnwindSafe for blaze_normalize_reason
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§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.