[][src]Struct dinotree_alg::analyze::node::NodeMut

pub struct NodeMut<'a, T: Aabb> { /* fields omitted */ }

A lifetimed node in a dinotree.

Methods

impl<'a, T: Aabb> NodeMut<'a, T>[src]

pub fn get(&self) -> NodeRef<T>[src]

pub fn get_mut(&mut self) -> NodeRefMut<T>[src]

Trait Implementations

impl<'a, T: Aabb> Node for NodeMut<'a, T>[src]

type T = T

type Num = T::Num

Auto Trait Implementations

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

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

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

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

impl<'a, T> !UnwindSafe for NodeMut<'a, 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.