pub enum ESat {
True,
False,
Undefined,
}Expand description
Represents the satisfaction state of a constraint.
This enum indicates whether a constraint is satisfied, not satisfied, or if it is not yet possible to determine its satisfaction state.
Variants§
True
The constraint is satisfied.
False
The constraint is not satisfied.
Undefined
The satisfaction state cannot be determined yet.
Trait Implementations§
impl Copy for ESat
impl Eq for ESat
impl StructuralPartialEq for ESat
Auto Trait Implementations§
impl Freeze for ESat
impl RefUnwindSafe for ESat
impl Send for ESat
impl Sync for ESat
impl Unpin for ESat
impl UnsafeUnpin for ESat
impl UnwindSafe for ESat
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