pub enum EntryOutcome {
Permitted,
Denied,
Evaluated,
Routed,
Conflict,
Skipped,
}Expand description
Outcome of a trace step.
Variants§
Trait Implementations§
Source§impl Clone for EntryOutcome
impl Clone for EntryOutcome
Source§fn clone(&self) -> EntryOutcome
fn clone(&self) -> EntryOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EntryOutcome
Source§impl Debug for EntryOutcome
impl Debug for EntryOutcome
impl Eq for EntryOutcome
Source§impl PartialEq for EntryOutcome
impl PartialEq for EntryOutcome
impl StructuralPartialEq for EntryOutcome
Auto Trait Implementations§
impl Freeze for EntryOutcome
impl RefUnwindSafe for EntryOutcome
impl Send for EntryOutcome
impl Sync for EntryOutcome
impl Unpin for EntryOutcome
impl UnsafeUnpin for EntryOutcome
impl UnwindSafe for EntryOutcome
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