pub enum DecisionmakerResult {
Pass(String),
None,
Decided(Decision),
}Variants§
Trait Implementations§
Source§impl Debug for DecisionmakerResult
impl Debug for DecisionmakerResult
Source§impl<'de> Deserialize<'de> for DecisionmakerResult
impl<'de> Deserialize<'de> for DecisionmakerResult
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
Auto Trait Implementations§
impl Freeze for DecisionmakerResult
impl RefUnwindSafe for DecisionmakerResult
impl Send for DecisionmakerResult
impl Sync for DecisionmakerResult
impl Unpin for DecisionmakerResult
impl UnwindSafe for DecisionmakerResult
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