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.