Skip to main content

Higher

Trait Higher 

Source
pub trait Higher<O: Level>: Level { }
Expand description

Indicate that the implementor is higher that the level O

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<L1: Level, L2> Higher<L2> for L1
where L2: Lower<L1> + Level,