Trait rbatis::Sub[][src]

pub trait Sub<Rhs = Self> {
    type Output;
    fn op_sub(self, rhs: Rhs) -> Self::Output;
}

Associated Types

The resulting type after applying the - operator.

Required methods

Performs the - operation.

Example
assert_eq!(12 - 1, 11);

Implementations on Foreign Types

Implementors