Struct cedar_policy::Diagnostics
source · pub struct Diagnostics { /* private fields */ }
Expand description
Diagnostics providing more information on how a Decision
was reached
Implementations§
source§impl Diagnostics
impl Diagnostics
sourcepub fn reason(&self) -> impl Iterator<Item = &PolicyId>
pub fn reason(&self) -> impl Iterator<Item = &PolicyId>
Get the policies that contributed to the decision
let authorizer = Authorizer::new();
let response = authorizer.is_authorized(&request, &policy, &entities);
match response.decision() {
Decision::Allow => println!("ALLOW"),
Decision::Deny => println!("DENY"),
}
println!("note: this decision was due to the following policies:");
for reason in response.diagnostics().reason() {
println!("{}", reason);
}
sourcepub fn errors(&self) -> impl Iterator<Item = &AuthorizationError> + '_
pub fn errors(&self) -> impl Iterator<Item = &AuthorizationError> + '_
Get the errors
let authorizer = Authorizer::new();
let response = authorizer.is_authorized(&request, &policy, &entities);
match response.decision() {
Decision::Allow => println!("ALLOW"),
Decision::Deny => println!("DENY"),
}
for err in response.diagnostics().errors() {
println!("{}", err);
}
Trait Implementations§
source§impl Clone for Diagnostics
impl Clone for Diagnostics
source§fn clone(&self) -> Diagnostics
fn clone(&self) -> Diagnostics
Returns a copy of the value. Read more
1.0.0 · 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 Diagnostics
impl Debug for Diagnostics
source§impl From<Diagnostics> for Diagnostics
impl From<Diagnostics> for Diagnostics
source§fn from(diagnostics: Diagnostics) -> Self
fn from(diagnostics: Diagnostics) -> Self
Converts to this type from the input type.
source§impl PartialEq for Diagnostics
impl PartialEq for Diagnostics
source§fn eq(&self, other: &Diagnostics) -> bool
fn eq(&self, other: &Diagnostics) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for Diagnostics
impl StructuralEq for Diagnostics
impl StructuralPartialEq for Diagnostics
Auto Trait Implementations§
impl RefUnwindSafe for Diagnostics
impl Send for Diagnostics
impl Sync for Diagnostics
impl Unpin for Diagnostics
impl UnwindSafe for Diagnostics
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.