pub struct LessBinaryOperation<'s> {
pub left: Box<ComponentValue<'s>>,
pub op: LessOperationOperator,
pub right: Box<ComponentValue<'s>>,
pub span: Span,
}Fields§
§left: Box<ComponentValue<'s>>§op: LessOperationOperator§right: Box<ComponentValue<'s>>§span: SpanTrait Implementations§
Source§impl<'s> Clone for LessBinaryOperation<'s>
impl<'s> Clone for LessBinaryOperation<'s>
Source§fn clone(&self) -> LessBinaryOperation<'s>
fn clone(&self) -> LessBinaryOperation<'s>
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<'s> Debug for LessBinaryOperation<'s>
impl<'s> Debug for LessBinaryOperation<'s>
Source§impl<'s> PartialEq for LessBinaryOperation<'s>
impl<'s> PartialEq for LessBinaryOperation<'s>
impl<'s> StructuralPartialEq for LessBinaryOperation<'s>
Auto Trait Implementations§
impl<'s> Freeze for LessBinaryOperation<'s>
impl<'s> RefUnwindSafe for LessBinaryOperation<'s>
impl<'s> Send for LessBinaryOperation<'s>
impl<'s> Sync for LessBinaryOperation<'s>
impl<'s> Unpin for LessBinaryOperation<'s>
impl<'s> UnwindSafe for LessBinaryOperation<'s>
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