Trait mines::OptionExt [] [src]

pub trait OptionExt<T> {
    unsafe fn boom_some(self) -> T;
    unsafe fn boom_none(self);
    unsafe fn boom_take(&mut self) -> T;
}

boom extensions to Option.

Required Methods

boom assertion of Some variant.

boom assertion of None variant.

take with boom assertion.

Implementors