pub struct OperatorExpressionOperator {
pub operator: String,
pub operators: Vec<Operator>,
}
Fields§
§operator: String
§operators: Vec<Operator>
Trait Implementations§
Source§impl Clone for OperatorExpressionOperator
impl Clone for OperatorExpressionOperator
Source§fn clone(&self) -> OperatorExpressionOperator
fn clone(&self) -> OperatorExpressionOperator
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 OperatorExpressionOperator
impl Debug for OperatorExpressionOperator
impl StructuralPartialEq for OperatorExpressionOperator
Auto Trait Implementations§
impl Freeze for OperatorExpressionOperator
impl RefUnwindSafe for OperatorExpressionOperator
impl Send for OperatorExpressionOperator
impl Sync for OperatorExpressionOperator
impl Unpin for OperatorExpressionOperator
impl UnwindSafe for OperatorExpressionOperator
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