Trait rbatis_sql::ops::Sub

source ·
pub trait Sub<Rhs = Self> {
    type Output;

    fn op_sub(self, rhs: Rhs) -> Self::Output;
}

Required 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