pub trait BoundSided {
    fn side() -> BoundSide;
}
Expand description

A trait implemented by phantom types indicating the type of the bound.

Required Methods

Returns the bound side this type corresponds to.

Implementors