pub enum PermissionInheritance {
Off,
On,
}Expand description
Whether lean-ctx mirrors the host IDE’s tool-permission rules onto its own MCP tools (“permission inheritance”).
Off(default): lean-ctx tools are governed only by lean-ctx’s own layers (role policy, shell allowlist). lean-ctx’sctx_shelltherefore runs independently of the IDE’sbash/rm *permission rules.On: before dispatching, lean-ctx reads the active IDE’s permission config (v1: OpenCodeopencode.json[c]) and applies the equivalent decision to the matching lean-ctx tool —denyblocks,askis held back (MCP cannot prompt for these tools),allowproceeds. Read-only; lean-ctx never writes the IDE’spermissionblock.
Variants§
Trait Implementations§
Source§impl Clone for PermissionInheritance
impl Clone for PermissionInheritance
Source§fn clone(&self) -> PermissionInheritance
fn clone(&self) -> PermissionInheritance
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 moreimpl Copy for PermissionInheritance
Source§impl Debug for PermissionInheritance
impl Debug for PermissionInheritance
impl Eq for PermissionInheritance
Source§impl PartialEq for PermissionInheritance
impl PartialEq for PermissionInheritance
Source§fn eq(&self, other: &PermissionInheritance) -> bool
fn eq(&self, other: &PermissionInheritance) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PermissionInheritance
Auto Trait Implementations§
impl Freeze for PermissionInheritance
impl RefUnwindSafe for PermissionInheritance
impl Send for PermissionInheritance
impl Sync for PermissionInheritance
impl Unpin for PermissionInheritance
impl UnsafeUnpin for PermissionInheritance
impl UnwindSafe for PermissionInheritance
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> 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.impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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