pub enum Operator {
Dot,
Flow,
Math(MathOperator),
Comparison(ComparisonOperator),
Logic(LogicOperator),
Bit(BitOperator),
}
Variants§
Trait Implementations§
Source§impl From<BitOperator> for Operator
impl From<BitOperator> for Operator
Source§fn from(value: BitOperator) -> Self
fn from(value: BitOperator) -> Self
Converts to this type from the input type.
Source§impl From<ComparisonOperator> for Operator
impl From<ComparisonOperator> for Operator
Source§fn from(value: ComparisonOperator) -> Self
fn from(value: ComparisonOperator) -> Self
Converts to this type from the input type.
Source§impl From<LogicOperator> for Operator
impl From<LogicOperator> for Operator
Source§fn from(value: LogicOperator) -> Self
fn from(value: LogicOperator) -> Self
Converts to this type from the input type.
Source§impl From<MathOperator> for Operator
impl From<MathOperator> for Operator
Source§fn from(value: MathOperator) -> Self
fn from(value: MathOperator) -> Self
Converts to this type from the input type.
Source§impl ToRepresentation for Operator
impl ToRepresentation for Operator
fn representation(&self) -> &'static str
impl Copy for Operator
impl StructuralPartialEq for Operator
Auto Trait Implementations§
impl Freeze for Operator
impl RefUnwindSafe for Operator
impl Send for Operator
impl Sync for Operator
impl Unpin for Operator
impl UnwindSafe for Operator
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