pub struct Calc<'s> {
pub left: Box<ComponentValue<'s>>,
pub op: CalcOperator,
pub right: Box<ComponentValue<'s>>,
pub span: Span,
}Fields§
§left: Box<ComponentValue<'s>>§op: CalcOperator§right: Box<ComponentValue<'s>>§span: SpanTrait Implementations§
impl<'s> StructuralPartialEq for Calc<'s>
Auto Trait Implementations§
impl<'s> Freeze for Calc<'s>
impl<'s> RefUnwindSafe for Calc<'s>
impl<'s> Send for Calc<'s>
impl<'s> Sync for Calc<'s>
impl<'s> Unpin for Calc<'s>
impl<'s> UnsafeUnpin for Calc<'s>
impl<'s> UnwindSafe for Calc<'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