pub enum ReviewDecision {
Approved,
ApprovedExecpolicyAmendment,
ApprovedForSession,
NetworkPolicyAmendment {
host: String,
action: NetworkPolicyRuleAction,
},
Denied,
Abort,
}Variants§
Trait Implementations§
Source§impl Clone for ReviewDecision
impl Clone for ReviewDecision
Source§fn clone(&self) -> ReviewDecision
fn clone(&self) -> ReviewDecision
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 ReviewDecision
impl Debug for ReviewDecision
Source§impl<'de> Deserialize<'de> for ReviewDecision
impl<'de> Deserialize<'de> for ReviewDecision
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 for ReviewDecision
impl PartialEq for ReviewDecision
Source§impl Serialize for ReviewDecision
impl Serialize for ReviewDecision
impl Eq for ReviewDecision
impl StructuralPartialEq for ReviewDecision
Auto Trait Implementations§
impl Freeze for ReviewDecision
impl RefUnwindSafe for ReviewDecision
impl Send for ReviewDecision
impl Sync for ReviewDecision
impl Unpin for ReviewDecision
impl UnsafeUnpin for ReviewDecision
impl UnwindSafe for ReviewDecision
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