Trait ValueOperation

Source
pub trait ValueOperation:
    ArithmeticOps
    + LogicalOps
    + ComparisonOps { }
Expand description

Combined trait for all value operations (for backward compatibility)

This trait automatically implements all value operations for any type that implements the individual operation traits.

Implementors§

Source§

impl<T> ValueOperation for T

Blanket implementation for any type that implements all three operation traits