[][src]Trait vec_utils::BoxExt

pub trait BoxExt: Sized {
    type T: ?Sized;
    fn drop_box(bx: Box<Self::T>) -> UninitBox;
fn take(bx: Box<Self::T>) -> (UninitBox, Self::T)
    where
        Self::T: Sized
; }

Associated Types

type T: ?Sized

Loading content...

Required methods

fn drop_box(bx: Box<Self::T>) -> UninitBox

fn take(bx: Box<Self::T>) -> (UninitBox, Self::T) where
    Self::T: Sized

Loading content...

Implementations on Foreign Types

impl<T: ?Sized> BoxExt for Box<T>[src]

type T = T

Loading content...

Implementors

Loading content...