[][src]Struct flat_spatial::shapegrid::StoreObject

pub struct StoreObject<O: Copy, S: Shape> {
    pub shape: S,
    // some fields omitted
}

The actual object stored in the store

Fields

shape: S

Trait Implementations

impl<O: Clone + Copy, S: Clone + Shape> Clone for StoreObject<O, S>[src]

impl<O: Copy, S: Copy + Shape> Copy for StoreObject<O, S>[src]

Auto Trait Implementations

impl<O, S> RefUnwindSafe for StoreObject<O, S> where
    O: RefUnwindSafe,
    S: RefUnwindSafe

impl<O, S> Send for StoreObject<O, S> where
    O: Send,
    S: Send

impl<O, S> Sync for StoreObject<O, S> where
    O: Sync,
    S: Sync

impl<O, S> Unpin for StoreObject<O, S> where
    O: Unpin,
    S: Unpin

impl<O, S> UnwindSafe for StoreObject<O, S> where
    O: UnwindSafe,
    S: UnwindSafe

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> Slottable for T where
    T: Copy
[src]

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.