pub enum Scope {
Local,
User,
Project,
Managed,
}Expand description
Scope for MCP and plugin commands.
Variants§
Local
Local scope (current directory).
User
User scope (global).
Project
Project scope.
Managed
Managed scope – plugins installed by an outer manager
rather than directly by the user. Accepted by claude plugin update --scope managed as of CLI 2.1.143.
Trait Implementations§
impl Copy for Scope
impl Eq for Scope
impl StructuralPartialEq for Scope
Auto Trait Implementations§
impl Freeze for Scope
impl RefUnwindSafe for Scope
impl Send for Scope
impl Sync for Scope
impl Unpin for Scope
impl UnsafeUnpin for Scope
impl UnwindSafe for Scope
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