pub enum ComputeCommand {
Help,
Devices(Selection),
Probe(Selection),
Profile(ProfileRequest),
Explain(ProfileRequest),
Recipe(RecipeRequest),
}Expand description
Parsed compute CLI command.
Variants§
Help
Render command help.
Devices(Selection)
List installed compute providers.
Probe(Selection)
Render bounded probe evidence for selected providers.
Profile(ProfileRequest)
Read, write, or list injected profile storage.
Explain(ProfileRequest)
Explain profile routing for one selected device identity.
Recipe(RecipeRequest)
Render a checked recipe descriptor.
Trait Implementations§
Source§impl Clone for ComputeCommand
impl Clone for ComputeCommand
Source§fn clone(&self) -> ComputeCommand
fn clone(&self) -> ComputeCommand
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ComputeCommand
impl Debug for ComputeCommand
impl Eq for ComputeCommand
Source§impl PartialEq for ComputeCommand
impl PartialEq for ComputeCommand
impl StructuralPartialEq for ComputeCommand
Auto Trait Implementations§
impl Freeze for ComputeCommand
impl RefUnwindSafe for ComputeCommand
impl Send for ComputeCommand
impl Sync for ComputeCommand
impl Unpin for ComputeCommand
impl UnsafeUnpin for ComputeCommand
impl UnwindSafe for ComputeCommand
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