pub enum UpdateAction {
NpmGlobalLatest,
BunGlobalLatest,
BrewUpgrade,
}Expand description
Update action the CLI should perform after the prompt exits.
Variants§
NpmGlobalLatest
Update via npm install -g codex-profiles.
BunGlobalLatest
Update via bun install -g codex-profiles.
BrewUpgrade
Update via brew upgrade codex-profiles.
Implementations§
Source§impl UpdateAction
impl UpdateAction
Sourcepub fn command_args(self) -> (&'static str, &'static [&'static str])
pub fn command_args(self) -> (&'static str, &'static [&'static str])
Returns the list of command-line arguments for invoking the update.
Sourcepub fn command_str(self) -> String
pub fn command_str(self) -> String
Returns string representation of the command-line arguments for invoking the update.
Trait Implementations§
Source§impl Clone for UpdateAction
impl Clone for UpdateAction
Source§fn clone(&self) -> UpdateAction
fn clone(&self) -> UpdateAction
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 UpdateAction
impl Debug for UpdateAction
Source§impl PartialEq for UpdateAction
impl PartialEq for UpdateAction
impl Copy for UpdateAction
impl Eq for UpdateAction
impl StructuralPartialEq for UpdateAction
Auto Trait Implementations§
impl Freeze for UpdateAction
impl RefUnwindSafe for UpdateAction
impl Send for UpdateAction
impl Sync for UpdateAction
impl Unpin for UpdateAction
impl UnwindSafe for UpdateAction
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<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