#[repr(u16)]pub enum BranchCondition {
Always = 0,
Less = 1,
LessEqual = 2,
Equal = 3,
NotEqual = 4,
Greater = 5,
GreaterEqual = 6,
Never = 7,
}Variants§
Trait Implementations§
Source§impl Clone for BranchCondition
impl Clone for BranchCondition
Source§fn clone(&self) -> BranchCondition
fn clone(&self) -> BranchCondition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BranchCondition
impl Debug for BranchCondition
Source§impl Display for BranchCondition
impl Display for BranchCondition
Source§impl Hash for BranchCondition
impl Hash for BranchCondition
Source§impl PartialEq for BranchCondition
impl PartialEq for BranchCondition
Source§fn eq(&self, other: &BranchCondition) -> bool
fn eq(&self, other: &BranchCondition) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for BranchCondition
impl Eq for BranchCondition
impl StructuralPartialEq for BranchCondition
Auto Trait Implementations§
impl Freeze for BranchCondition
impl RefUnwindSafe for BranchCondition
impl Send for BranchCondition
impl Sync for BranchCondition
impl Unpin for BranchCondition
impl UnsafeUnpin for BranchCondition
impl UnwindSafe for BranchCondition
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