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

Specifies constraints on Load operations.

Object Safety§

This trait is not object safe.

Implementors§