pub enum PromotionOutcome {
Promote,
Reject,
Hold,
}Variants§
Trait Implementations§
Source§impl Clone for PromotionOutcome
impl Clone for PromotionOutcome
Source§fn clone(&self) -> PromotionOutcome
fn clone(&self) -> PromotionOutcome
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 PromotionOutcome
Source§impl Debug for PromotionOutcome
impl Debug for PromotionOutcome
Source§impl<'de> Deserialize<'de> for PromotionOutcome
impl<'de> Deserialize<'de> for PromotionOutcome
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
impl Eq for PromotionOutcome
Source§impl PartialEq for PromotionOutcome
impl PartialEq for PromotionOutcome
Source§impl Serialize for PromotionOutcome
impl Serialize for PromotionOutcome
impl StructuralPartialEq for PromotionOutcome
Auto Trait Implementations§
impl Freeze for PromotionOutcome
impl RefUnwindSafe for PromotionOutcome
impl Send for PromotionOutcome
impl Sync for PromotionOutcome
impl Unpin for PromotionOutcome
impl UnsafeUnpin for PromotionOutcome
impl UnwindSafe for PromotionOutcome
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