pub struct PolicySet {
pub policies: Vec<ContextPolicy>,
}Expand description
A set of loaded policies.
Fields§
§policies: Vec<ContextPolicy>Implementations§
Source§impl PolicySet
impl PolicySet
pub fn new() -> Self
Sourcepub fn evaluate(
&self,
path: &str,
seen_before: bool,
token_count: usize,
) -> Vec<PolicyEvalResult>
pub fn evaluate( &self, path: &str, seen_before: bool, token_count: usize, ) -> Vec<PolicyEvalResult>
Evaluate all policies against a path, returning applicable actions.
Sourcepub fn evaluate_full(
&self,
path: &str,
seen_before: bool,
token_count: usize,
agent_id: Option<&str>,
role: Option<&str>,
content: Option<&str>,
) -> Vec<PolicyEvalResult>
pub fn evaluate_full( &self, path: &str, seen_before: bool, token_count: usize, agent_id: Option<&str>, role: Option<&str>, content: Option<&str>, ) -> Vec<PolicyEvalResult>
Evaluate with full context including agent/role/content dimensions.
Sourcepub fn effective_state(
&self,
path: &str,
current: ContextState,
seen_before: bool,
token_count: usize,
) -> ContextState
pub fn effective_state( &self, path: &str, current: ContextState, seen_before: bool, token_count: usize, ) -> ContextState
Determine the effective state for an item after policy evaluation.
Sourcepub fn recommended_view(
&self,
path: &str,
seen_before: bool,
token_count: usize,
) -> Option<ViewKind>
pub fn recommended_view( &self, path: &str, seen_before: bool, token_count: usize, ) -> Option<ViewKind>
Determine the recommended view for an item after policy evaluation.
Sourcepub fn load_project(project_root: &Path) -> Self
pub fn load_project(project_root: &Path) -> Self
Load policies from a project’s .lean-ctx/policies.json file.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PolicySet
impl<'de> Deserialize<'de> for PolicySet
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PolicySet
impl RefUnwindSafe for PolicySet
impl Send for PolicySet
impl Sync for PolicySet
impl Unpin for PolicySet
impl UnsafeUnpin for PolicySet
impl UnwindSafe for PolicySet
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<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