pub enum Unary {
Negate,
Parens,
Length,
TypeOf,
Ffi(String),
}Expand description
Builder for a unary operation
Variants§
Trait Implementations§
Source§impl Convert<Unary> for Unary
impl Convert<Unary> for Unary
fn convert(&self, symbols: &mut SymbolTable) -> Unary
fn convert_from(f: &Unary, symbols: &SymbolTable) -> Result<Self, Format>
fn translate( f: &T, from_symbols: &SymbolTable, to_symbols: &mut SymbolTable, ) -> Result<T, Format>
Source§impl Ord for Unary
impl Ord for Unary
Source§impl PartialOrd for Unary
impl PartialOrd for Unary
impl Eq for Unary
impl StructuralPartialEq for Unary
Auto Trait Implementations§
impl Freeze for Unary
impl RefUnwindSafe for Unary
impl Send for Unary
impl Sync for Unary
impl Unpin for Unary
impl UnwindSafe for Unary
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