std::macros::unimplemented![src]
macro_rules! unimplemented( () => (fail!("not yet implemented")) )
A standardised placeholder for marking unfinished code. It fails with the
message "not yet implemented" when executed.
macro_rules! unimplemented( () => (fail!("not yet implemented")) )
A standardised placeholder for marking unfinished code. It fails with the
message "not yet implemented" when executed.
Prefix searches with a type followed by a colon (e.g.
fn:) to restrict the search to a given type.
Accepted types are: fn, mod,
struct (or str), enum,
trait, typedef (or
tdef).