Struct cedar_policy::Validator
source · #[repr(transparent)]pub struct Validator(_);
Expand description
Validator object, which provides policy validation and typechecking.
Implementations§
source§impl Validator
impl Validator
sourcepub fn new(schema: Schema) -> Self
pub fn new(schema: Schema) -> Self
Construct a new Validator
to validate policies using the given
Schema
.
sourcepub fn validate<'a>(
&'a self,
pset: &'a PolicySet,
mode: ValidationMode
) -> ValidationResult<'a>
pub fn validate<'a>( &'a self, pset: &'a PolicySet, mode: ValidationMode ) -> ValidationResult<'a>
Validate all policies in a policy set, collecting all validation errors
found into the returned ValidationResult
. Each error is returned together with the
policy id of the policy where the error was found. If a policy id
included in the input policy set does not appear in the output iterator, then
that policy passed the validator. If the function validation_passed
returns true, then there were no validation errors found, so all
policies in the policy set have passed the validator.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Validator
impl Send for Validator
impl Sync for Validator
impl Unpin for Validator
impl UnwindSafe for Validator
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