pub enum AdapterDetection {
Detected,
NotDetected,
}Expand description
What Adapter::detect found in a target directory.
Variants§
Detected
Strong signal the tool is in use here (config files, binaries, etc.).
NotDetected
Nothing conclusive found.
Trait Implementations§
Source§impl Clone for AdapterDetection
impl Clone for AdapterDetection
Source§fn clone(&self) -> AdapterDetection
fn clone(&self) -> AdapterDetection
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 AdapterDetection
impl Debug for AdapterDetection
Source§impl PartialEq for AdapterDetection
impl PartialEq for AdapterDetection
impl Copy for AdapterDetection
impl Eq for AdapterDetection
impl StructuralPartialEq for AdapterDetection
Auto Trait Implementations§
impl Freeze for AdapterDetection
impl RefUnwindSafe for AdapterDetection
impl Send for AdapterDetection
impl Sync for AdapterDetection
impl Unpin for AdapterDetection
impl UnsafeUnpin for AdapterDetection
impl UnwindSafe for AdapterDetection
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