pub trait LoadOps: Load + Add<Output = Self> + Sub<Output = Self> + 'static where
    Self: Sized
{ }
Expand description

Specifies constraints on Load operations.

Implementors