pub struct ValueBinaryOpError {
pub operator: BinOp,
pub values: (Value, Value),
}
Expand description
Error performing a binary operation on two Value
s.
Fieldsยง
ยงoperator: BinOp
ยงvalues: (Value, Value)
Trait Implementationsยง
Sourceยงimpl Debug for ValueBinaryOpError
impl Debug for ValueBinaryOpError
Sourceยงimpl Display for ValueBinaryOpError
impl Display for ValueBinaryOpError
Sourceยงimpl From<ValueBinaryOpError> for ExprExecError
impl From<ValueBinaryOpError> for ExprExecError
Sourceยงfn from(e: ValueBinaryOpError) -> Self
fn from(e: ValueBinaryOpError) -> Self
Converts to this type from the input type.
Sourceยงimpl PartialEq for ValueBinaryOpError
impl PartialEq for ValueBinaryOpError
impl StructuralPartialEq for ValueBinaryOpError
Auto Trait Implementationsยง
impl Freeze for ValueBinaryOpError
impl RefUnwindSafe for ValueBinaryOpError
impl Send for ValueBinaryOpError
impl Sync for ValueBinaryOpError
impl Unpin for ValueBinaryOpError
impl UnwindSafe for ValueBinaryOpError
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