pub enum Obligation {
Audit {
tag: String,
},
RateLimit {
window_secs: u64,
max: u32,
},
Custom {
value: Value,
},
}Expand description
Policy instructions attached to an allow; only Audit has v0 runtime handling.
RateLimit requires positive values but is not enforced in v0. See
crates/khive-gate/docs/api/policy-types.md.
Variants§
Audit
RateLimit
Custom
Policy-specific arbitrary JSON; the struct form preserves internally tagged scalar values.
Implementations§
Source§impl Obligation
impl Obligation
Sourcepub fn try_rate_limit(
window_secs: u64,
max: u32,
) -> Result<Self, GateValidationError>
pub fn try_rate_limit( window_secs: u64, max: u32, ) -> Result<Self, GateValidationError>
Create a validated RateLimit obligation.
Returns Err if window_secs or max is zero.
Sourcepub fn rate_limit(window_secs: u64, max: u32) -> Self
pub fn rate_limit(window_secs: u64, max: u32) -> Self
Create a validated RateLimit obligation. Panics if window_secs or max is zero.
Trait Implementations§
Source§impl Clone for Obligation
impl Clone for Obligation
Source§fn clone(&self) -> Obligation
fn clone(&self) -> Obligation
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 Obligation
impl Debug for Obligation
Source§impl<'de> Deserialize<'de> for Obligation
impl<'de> Deserialize<'de> for Obligation
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 Obligation
impl RefUnwindSafe for Obligation
impl Send for Obligation
impl Sync for Obligation
impl Unpin for Obligation
impl UnsafeUnpin for Obligation
impl UnwindSafe for Obligation
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