pub enum PlanVerdict {
Allowed,
PartiallyDenied,
FullyDenied,
}Expand description
Aggregate verdict across every step in the plan.
Variants§
Allowed
Every step is allowed under the planner’s capability.
PartiallyDenied
At least one but not all steps were denied.
FullyDenied
Every step was denied.
Trait Implementations§
Source§impl Clone for PlanVerdict
impl Clone for PlanVerdict
Source§fn clone(&self) -> PlanVerdict
fn clone(&self) -> PlanVerdict
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 PlanVerdict
impl Debug for PlanVerdict
Source§impl<'de> Deserialize<'de> for PlanVerdict
impl<'de> Deserialize<'de> for PlanVerdict
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlanVerdict, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlanVerdict, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PlanVerdict
impl PartialEq for PlanVerdict
Source§impl Serialize for PlanVerdict
impl Serialize for PlanVerdict
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for PlanVerdict
impl Eq for PlanVerdict
impl StructuralPartialEq for PlanVerdict
Auto Trait Implementations§
impl Freeze for PlanVerdict
impl RefUnwindSafe for PlanVerdict
impl Send for PlanVerdict
impl Sync for PlanVerdict
impl Unpin for PlanVerdict
impl UnsafeUnpin for PlanVerdict
impl UnwindSafe for PlanVerdict
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.