Trait binary_tree::unbox::Unbox [] [src]

pub trait Unbox {
    type Target;
    fn unbox(self) -> Self::Target;
}

Trait specifying unboxing capability of a pointer type.

Associated Types

type Target

Required Methods

fn unbox(self) -> Self::Target

Implementors