pub enum FrameworkResolutionMode {
Installed,
Active {
local: bool,
settings_local: bool,
},
}Expand description
Mode for auto-detecting frameworks when no names are specified.
Variants§
Installed
Find frameworks that are installed on the system (for activation).
Active
Find frameworks that have mi6 hooks currently active (for deactivation).
Trait Implementations§
Source§impl Clone for FrameworkResolutionMode
impl Clone for FrameworkResolutionMode
Source§fn clone(&self) -> FrameworkResolutionMode
fn clone(&self) -> FrameworkResolutionMode
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 FrameworkResolutionMode
impl Debug for FrameworkResolutionMode
impl Copy for FrameworkResolutionMode
Auto Trait Implementations§
impl Freeze for FrameworkResolutionMode
impl RefUnwindSafe for FrameworkResolutionMode
impl Send for FrameworkResolutionMode
impl Sync for FrameworkResolutionMode
impl Unpin for FrameworkResolutionMode
impl UnwindSafe for FrameworkResolutionMode
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