pub enum Opened {
ByRequest,
OnItsOwn,
}Expand description
Whether anybody asked for the configurator, or it opened on its own.
Variants§
ByRequest
devp config wizard, typed on purpose.
OnItsOwn
The first run after an install, or the first after an upgrade added a setting — the two times this takes a terminal in the middle of a command that asked for something else.
Trait Implementations§
impl Copy for Opened
impl Eq for Opened
impl StructuralPartialEq for Opened
Auto Trait Implementations§
impl Freeze for Opened
impl RefUnwindSafe for Opened
impl Send for Opened
impl Sync for Opened
impl Unpin for Opened
impl UnsafeUnpin for Opened
impl UnwindSafe for Opened
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more