[][src]Struct dinotree_alg::prelude::NodeMut

pub struct NodeMut<'a, T: HasAabb> {
    pub range: &'a mut [T],
    pub cont: Option<Range<T::Num>>,
    pub div: Option<T::Num>,
}

A lifetimed node in a dinotree.

Fields

range: &'a mut [T]cont: Option<Range<T::Num>>div: Option<T::Num>

Trait Implementations

impl<'a, T: HasAabb> NodeTrait for NodeMut<'a, T>[src]

type T = T

type Num = T::Num

Auto Trait Implementations

impl<'a, T> Unpin for NodeMut<'a, T> where
    <T as HasAabb>::Num: Unpin

impl<'a, T> Send for NodeMut<'a, T> where
    T: Send,
    <T as HasAabb>::Num: Send

impl<'a, T> Sync for NodeMut<'a, T> where
    T: Sync,
    <T as HasAabb>::Num: Sync

impl<'a, T> !UnwindSafe for NodeMut<'a, T>

impl<'a, T> RefUnwindSafe for NodeMut<'a, T> where
    T: RefUnwindSafe,
    <T as HasAabb>::Num: RefUnwindSafe

Blanket Implementations

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

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

type Error = !

The type returned in the event of a conversion error.

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

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.

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

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

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