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.
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 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 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 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