pub enum OptionalParserPackOperation {
Verify,
Install,
Enable,
Update,
Disable,
Remove,
Status,
}Expand description
Explicit parser-pack lifecycle operation represented in structured output.
Variants§
Verify
Validate a completed archive without installing it.
Install
Install a completed archive into an immutable user-owned slot.
Enable
Select an already installed immutable slot for the current project.
Update
Install and atomically select a replacement while retaining rollback identity.
Disable
Remove the current project’s selection without deleting installed slots.
Remove
Disable this project and delete this logical pack’s user-owned slots.
Status
Inspect content-free local lifecycle state.
Trait Implementations§
Source§impl Clone for OptionalParserPackOperation
impl Clone for OptionalParserPackOperation
Source§fn clone(&self) -> OptionalParserPackOperation
fn clone(&self) -> OptionalParserPackOperation
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 OptionalParserPackOperation
impl Debug for OptionalParserPackOperation
impl Copy for OptionalParserPackOperation
impl Eq for OptionalParserPackOperation
impl StructuralPartialEq for OptionalParserPackOperation
Auto Trait Implementations§
impl Freeze for OptionalParserPackOperation
impl RefUnwindSafe for OptionalParserPackOperation
impl Send for OptionalParserPackOperation
impl Sync for OptionalParserPackOperation
impl Unpin for OptionalParserPackOperation
impl UnwindSafe for OptionalParserPackOperation
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.