pub trait LhsNumOps {
type Output;
// Required methods
fn add(self, rhs: &Series) -> Self::Output;
fn sub(self, rhs: &Series) -> Self::Output;
fn div(self, rhs: &Series) -> Self::Output;
fn mul(self, rhs: &Series) -> Self::Output;
fn rem(self, rem: &Series) -> Self::Output;
}Required Associated Types§
Required Methods§
fn add(self, rhs: &Series) -> Self::Output
fn sub(self, rhs: &Series) -> Self::Output
fn div(self, rhs: &Series) -> Self::Output
fn mul(self, rhs: &Series) -> Self::Output
fn rem(self, rem: &Series) -> Self::Output
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".