pub enum CfgResult {
True,
False,
Undetermined {
msg: String,
},
}
Expand description
Result of a CfgEvaluator
evaluation.
Variants§
True
Cfg option is enabled.
False
Cfg option is disabled.
Undetermined
Cfg option is neither enabled nor disabled.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CfgResult
impl RefUnwindSafe for CfgResult
impl Send for CfgResult
impl Sync for CfgResult
impl Unpin for CfgResult
impl UnwindSafe for CfgResult
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