pub enum AnalysisProgress {
Initial,
Hold,
Idle,
Discovery,
Disassembling(usize, usize),
Analyzing(usize, usize),
ExtendedAnalysis,
}Variants§
Trait Implementations§
source§impl Clone for AnalysisProgress
impl Clone for AnalysisProgress
source§fn clone(&self) -> AnalysisProgress
fn clone(&self) -> AnalysisProgress
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 AnalysisProgress
impl Debug for AnalysisProgress
source§impl Display for AnalysisProgress
impl Display for AnalysisProgress
source§impl From<BNAnalysisProgress> for AnalysisProgress
impl From<BNAnalysisProgress> for AnalysisProgress
source§fn from(value: BNAnalysisProgress) -> Self
fn from(value: BNAnalysisProgress) -> Self
Converts to this type from the input type.
source§impl Ord for AnalysisProgress
impl Ord for AnalysisProgress
source§fn cmp(&self, other: &AnalysisProgress) -> Ordering
fn cmp(&self, other: &AnalysisProgress) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for AnalysisProgress
impl PartialEq for AnalysisProgress
source§impl PartialOrd for AnalysisProgress
impl PartialOrd for AnalysisProgress
impl Eq for AnalysisProgress
impl StructuralPartialEq for AnalysisProgress
Auto Trait Implementations§
impl Freeze for AnalysisProgress
impl RefUnwindSafe for AnalysisProgress
impl Send for AnalysisProgress
impl Sync for AnalysisProgress
impl Unpin for AnalysisProgress
impl UnwindSafe for AnalysisProgress
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