Struct cedar_policy_core::authorizer::Diagnostics
source · pub struct Diagnostics {
pub reason: HashSet<PolicyID>,
pub errors: Vec<String>,
}
Expand description
Diagnostics providing more information on how a Decision
was reached
Fields§
§reason: HashSet<PolicyID>
PolicyID
s of the policies that contributed to the decision. If no
policies applied to the request, this set will be empty.
errors: Vec<String>
list of error messages which occurred
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<'de> Deserialize<'de> for Diagnostics
impl<'de> Deserialize<'de> for Diagnostics
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
source§impl PartialEq<Diagnostics> for Diagnostics
impl PartialEq<Diagnostics> 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 ==
.source§impl Serialize for Diagnostics
impl Serialize 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