Type Alias Never

Source
pub type Never = <fn() -> ! as ReturnTypeExtractor>::ReturnType;
Expand description

An alias for the ! type, accessed through trait trickery originally described by SkiFire13. It is present only to allow expressing a FnOnce(...) -> ! in the argument requirement of promote_to_static.