Trait boxing_day::Unwrappable [] [src]

pub trait Unwrappable<T> {
    fn unwrap(&self) -> Option<&T>;
fn unwrap_mut(&mut self) -> Option<&mut T>; }

Required Methods

Unwrap this box and get &T if you're allowed to

Unwrap this box and get &mut T if you're allowed to

Implementations on Foreign Types

impl<T> Unwrappable<T> for Box<T>
[src]

[src]

[src]

Implementors