pub enum CapabilityLevel {
Basic,
FileReading,
FileListing,
Bash,
Editing,
CodeSearch,
}Expand description
Workshop agent capability levels
Variants§
Basic
Basic chat only
FileReading
Can read files
FileListing
Can read files and list directories
Bash
Can read files, list directories, and run bash commands
Editing
Can read files, list directories, run bash commands, and edit files
CodeSearch
Full capabilities including code search
Trait Implementations§
Source§impl Clone for CapabilityLevel
impl Clone for CapabilityLevel
Source§fn clone(&self) -> CapabilityLevel
fn clone(&self) -> CapabilityLevel
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 CapabilityLevel
impl Debug for CapabilityLevel
Source§impl Ord for CapabilityLevel
impl Ord for CapabilityLevel
Source§fn cmp(&self, other: &CapabilityLevel) -> Ordering
fn cmp(&self, other: &CapabilityLevel) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CapabilityLevel
impl PartialEq for CapabilityLevel
Source§impl PartialOrd for CapabilityLevel
impl PartialOrd for CapabilityLevel
impl Copy for CapabilityLevel
impl Eq for CapabilityLevel
impl StructuralPartialEq for CapabilityLevel
Auto Trait Implementations§
impl Freeze for CapabilityLevel
impl RefUnwindSafe for CapabilityLevel
impl Send for CapabilityLevel
impl Sync for CapabilityLevel
impl Unpin for CapabilityLevel
impl UnwindSafe for CapabilityLevel
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.