pub type Unused<T> = UnusedImpl<T>;Expand description
A container for unused generic types.
The Unused type can be created using the Unused! macro.
Unused can also be used as a value for any type Unused<T>:
use unused::Unused;
let _: Unused!(usize) = Unused;See the crate documentation for more information.
Aliased Type§
pub enum Unused<T> {
__Inconstruable(T),
}