Rust - Types - Never Type


If a function will never return use the never return type !.

fn foo() -> ! {}

Some things that return the never type are continue and panic!.