[][src]Struct dinotree_alg::bbox::BBoxMut

#[repr(C)]
pub struct BBoxMut<'a, N, T> {
    pub rect: Rect<N>,
    pub inner: &'a mut T,
}

Equivalent to: (Rect<N>,&mut T)

Fields

rect: Rect<N>inner: &'a mut T

Methods

impl<'a, N, T> BBoxMut<'a, N, T>[src]

pub fn new(rect: Rect<N>, inner: &'a mut T) -> BBoxMut<'a, N, T>[src]

Trait Implementations

impl<'a, N: Num, T> Aabb for BBoxMut<'a, N, T>[src]

type Num = N

impl<'a, N: Debug, T: Debug> Debug for BBoxMut<'a, N, T>[src]

impl<'a, N: Num, T> HasInner for BBoxMut<'a, N, T>[src]

type Inner = T

Auto Trait Implementations

impl<'a, N, T> RefUnwindSafe for BBoxMut<'a, N, T> where
    N: RefUnwindSafe,
    T: RefUnwindSafe

impl<'a, N, T> Send for BBoxMut<'a, N, T> where
    N: Send,
    T: Send

impl<'a, N, T> Sync for BBoxMut<'a, N, T> where
    N: Sync,
    T: Sync

impl<'a, N, T> Unpin for BBoxMut<'a, N, T> where
    N: Unpin

impl<'a, N, T> !UnwindSafe for BBoxMut<'a, N, T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.