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

Specifies constraints on Load operations.

Implementors