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 PolicyIds of the policies that contributed to the decision.
If no policies applied to the request, this set will be empty.
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 that occurred during authorization. The errors should be treated as unordered, since policies may be evaluated in any order.
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 duplicate 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 PartialEq for Diagnostics
impl PartialEq for Diagnostics
impl Eq for Diagnostics
impl StructuralPartialEq for Diagnostics
Auto Trait Implementations§
impl Freeze for Diagnostics
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
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.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