Enum CmpValueType
pub enum CmpValueType {
Less,
Equal {
equal_to_min: bool,
equal_to_max: bool,
},
Greater,
}Expand description
The result of checking if an AstConstantInteger fits within the range of values for an AstType.
Variants§
Auto Trait Implementations§
impl Freeze for CmpValueType
impl RefUnwindSafe for CmpValueType
impl Send for CmpValueType
impl Sync for CmpValueType
impl Unpin for CmpValueType
impl UnwindSafe for CmpValueType
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