pub enum ExplorationState {
Initial,
DiscoveringStructure,
AnalyzingComponents,
MappingRelationships,
GeneratingDocumentation,
Completed,
}
Expand description
探索状态
Variants§
Initial
DiscoveringStructure
AnalyzingComponents
MappingRelationships
GeneratingDocumentation
Completed
Implementations§
Source§impl ExplorationState
impl ExplorationState
pub fn next(&self) -> Self
pub fn description(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ExplorationState
impl Clone for ExplorationState
Source§fn clone(&self) -> ExplorationState
fn clone(&self) -> ExplorationState
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 ExplorationState
impl Debug for ExplorationState
Source§impl PartialEq for ExplorationState
impl PartialEq for ExplorationState
impl StructuralPartialEq for ExplorationState
Auto Trait Implementations§
impl Freeze for ExplorationState
impl RefUnwindSafe for ExplorationState
impl Send for ExplorationState
impl Sync for ExplorationState
impl Unpin for ExplorationState
impl UnwindSafe for ExplorationState
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