pub enum ReviewDecision {
Approved,
ApprovedExecpolicyAmendment {
proposed_execpolicy_amendment: Vec<String>,
},
ApprovedForSession,
NetworkPolicyAmendment {
network_policy_amendment: NetworkPolicyAmendment,
},
Denied,
TimedOut,
Abort,
}Variants§
Approved
ApprovedExecpolicyAmendment
ApprovedForSession
NetworkPolicyAmendment
Fields
§
network_policy_amendment: NetworkPolicyAmendmentDenied
TimedOut
Abort
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 (const: unstable) · 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§fn eq(&self, other: &ReviewDecision) -> bool
fn eq(&self, other: &ReviewDecision) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ReviewDecision
impl Serialize 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