Enum ucglib::ast::CompareType [−][src]
pub enum CompareType {
Equal,
GT,
LT,
NotEqual,
GTEqual,
LTEqual,
}CompareType signals the type of a comparison for a binary expression.
Variants
EqualGTLTNotEqualGTEqualLTEqual
Trait Implementations
impl Debug for CompareType[src]
impl Debug for CompareTypefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for CompareType[src]
impl PartialEq for CompareTypefn eq(&self, other: &CompareType) -> bool[src]
fn eq(&self, other: &CompareType) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> bool1.0.0
[src]This method tests for !=.
impl Clone for CompareType[src]
impl Clone for CompareTypefn clone(&self) -> CompareType[src]
fn clone(&self) -> CompareTypeReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
Auto Trait Implementations
impl Send for CompareType
impl Send for CompareTypeimpl Sync for CompareType
impl Sync for CompareType