[][src]Enum splashsurf_lib::octree::NodeData

pub enum NodeData<I: Index, R: Real> {
    None,
    ParticleSet(ParticleSet),
    SurfacePatch(SurfacePatchWrapper<I, R>),
}

Optional data that may be stored in OctreeNodes

Variants

None

Empty variant

ParticleSet(ParticleSet)

Storage for a set of SPH particles

SurfacePatch(SurfacePatchWrapper<I, R>)

A patch that was already meshed

Implementations

impl<I: Index, R: Real> NodeData<I, R>[src]

pub fn particle_set(&self) -> Option<&ParticleSet>[src]

Returns a reference to the contained particle set if it contains one

pub fn surface_patch(&self) -> Option<&SurfacePatchWrapper<I, R>>[src]

Returns a reference to the contained surface patch if it contains one

pub fn into_particle_set(self) -> Option<ParticleSet>[src]

Consumes self and returns the ParticleSet if it contained one

pub fn into_surface_patch(self) -> Option<SurfacePatchWrapper<I, R>>[src]

Consumes self and returns the SurfacePatch if it contained one

pub fn take(&mut self) -> Self[src]

Returns the stored data and leaves None in its place

pub fn replace(&mut self, new_data: Self)[src]

Returns the stored data and leaves None in its place

Trait Implementations

impl<I: Clone + Index, R: Clone + Real> Clone for NodeData<I, R>[src]

impl<I: Debug + Index, R: Debug + Real> Debug for NodeData<I, R>[src]

impl<I: Index, R: Real> Default for NodeData<I, R>[src]

fn default() -> Self[src]

Returns an empty data instance

Auto Trait Implementations

impl<I, R> RefUnwindSafe for NodeData<I, R> where
    I: RefUnwindSafe,
    R: RefUnwindSafe
[src]

impl<I, R> Send for NodeData<I, R>[src]

impl<I, R> Sync for NodeData<I, R>[src]

impl<I, R> Unpin for NodeData<I, R> where
    I: Unpin,
    R: Unpin
[src]

impl<I, R> UnwindSafe for NodeData<I, R> where
    I: UnwindSafe,
    R: UnwindSafe
[src]

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> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,