pub enum BranchOpCode {
If,
IfElse,
Switch,
RangeLoop,
Loop,
Return,
Break,
}
Variants§
Trait Implementations§
Source§impl Clone for BranchOpCode
impl Clone for BranchOpCode
Source§fn clone(&self) -> BranchOpCode
fn clone(&self) -> BranchOpCode
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 BranchOpCode
impl Debug for BranchOpCode
Source§impl Hash for BranchOpCode
impl Hash for BranchOpCode
Source§impl Ord for BranchOpCode
impl Ord for BranchOpCode
Source§fn cmp(&self, other: &BranchOpCode) -> Ordering
fn cmp(&self, other: &BranchOpCode) -> 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 BranchOpCode
impl PartialEq for BranchOpCode
Source§impl PartialOrd for BranchOpCode
impl PartialOrd for BranchOpCode
Source§impl TypeHash for BranchOpCode
impl TypeHash for BranchOpCode
impl Copy for BranchOpCode
impl Eq for BranchOpCode
impl StructuralPartialEq for BranchOpCode
Auto Trait Implementations§
impl Freeze for BranchOpCode
impl RefUnwindSafe for BranchOpCode
impl Send for BranchOpCode
impl Sync for BranchOpCode
impl Unpin for BranchOpCode
impl UnwindSafe for BranchOpCode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.