pub struct ShadowDecision {
pub divergence_id: String,
pub iam_allowed: bool,
pub af_would_allow: bool,
pub breach_prevented: bool,
}Expand description
Shadow decision
Fields§
§divergence_id: String§iam_allowed: bool§af_would_allow: bool§breach_prevented: boolTrait Implementations§
Source§impl Clone for ShadowDecision
impl Clone for ShadowDecision
Source§fn clone(&self) -> ShadowDecision
fn clone(&self) -> ShadowDecision
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 ShadowDecision
impl Debug for ShadowDecision
Source§impl<'de> Deserialize<'de> for ShadowDecision
impl<'de> Deserialize<'de> for ShadowDecision
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 ShadowDecision
impl RefUnwindSafe for ShadowDecision
impl Send for ShadowDecision
impl Sync for ShadowDecision
impl Unpin for ShadowDecision
impl UnwindSafe for ShadowDecision
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