#[repr(i32)]pub enum BoolTestType {
Undefined = 0,
IsTrue = 1,
IsNotTrue = 2,
IsFalse = 3,
IsNotFalse = 4,
IsUnknown = 5,
IsNotUnknown = 6,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for BoolTestType
impl Clone for BoolTestType
Source§fn clone(&self) -> BoolTestType
fn clone(&self) -> BoolTestType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BoolTestType
impl Debug for BoolTestType
Source§impl Default for BoolTestType
impl Default for BoolTestType
Source§fn default() -> BoolTestType
fn default() -> BoolTestType
Returns the “default value” for a type. Read more
Source§impl From<BoolTestType> for i32
impl From<BoolTestType> for i32
Source§fn from(value: BoolTestType) -> i32
fn from(value: BoolTestType) -> i32
Converts to this type from the input type.
Source§impl Hash for BoolTestType
impl Hash for BoolTestType
Source§impl Ord for BoolTestType
impl Ord for BoolTestType
Source§fn cmp(&self, other: &BoolTestType) -> Ordering
fn cmp(&self, other: &BoolTestType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BoolTestType
impl PartialEq for BoolTestType
Source§impl PartialOrd for BoolTestType
impl PartialOrd for BoolTestType
impl Copy for BoolTestType
impl Eq for BoolTestType
impl StructuralPartialEq for BoolTestType
Auto Trait Implementations§
impl Freeze for BoolTestType
impl RefUnwindSafe for BoolTestType
impl Send for BoolTestType
impl Sync for BoolTestType
impl Unpin for BoolTestType
impl UnwindSafe for BoolTestType
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