pub enum AutonomousDecisionReviewState {
AutoApproved,
HumanReviewRequired,
ShadowOnly,
Blocked,
}Variants§
Trait Implementations§
Source§impl Clone for AutonomousDecisionReviewState
impl Clone for AutonomousDecisionReviewState
Source§fn clone(&self) -> AutonomousDecisionReviewState
fn clone(&self) -> AutonomousDecisionReviewState
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<'de> Deserialize<'de> for AutonomousDecisionReviewState
impl<'de> Deserialize<'de> for AutonomousDecisionReviewState
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AutonomousDecisionReviewState, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AutonomousDecisionReviewState, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for AutonomousDecisionReviewState
impl Hash for AutonomousDecisionReviewState
Source§impl PartialEq for AutonomousDecisionReviewState
impl PartialEq for AutonomousDecisionReviewState
Source§fn eq(&self, other: &AutonomousDecisionReviewState) -> bool
fn eq(&self, other: &AutonomousDecisionReviewState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AutonomousDecisionReviewState
impl Serialize for AutonomousDecisionReviewState
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 AutonomousDecisionReviewState
impl Eq for AutonomousDecisionReviewState
impl StructuralPartialEq for AutonomousDecisionReviewState
Auto Trait Implementations§
impl Freeze for AutonomousDecisionReviewState
impl RefUnwindSafe for AutonomousDecisionReviewState
impl Send for AutonomousDecisionReviewState
impl Sync for AutonomousDecisionReviewState
impl Unpin for AutonomousDecisionReviewState
impl UnsafeUnpin for AutonomousDecisionReviewState
impl UnwindSafe for AutonomousDecisionReviewState
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