[][src]Struct all_is_cubes::universe::Universe

pub struct Universe { /* fields omitted */ }

A collection of named objects which can refer to each other via URef. In the future, it will enable multiple references, garbage collection, change notification, and inter-object invariants.

Implementations

impl Universe[src]

pub fn new() -> Self[src]

pub fn get_default_space(&self) -> URef<Space>[src]

pub fn get_default_camera(&self) -> URef<Camera>[src]

pub fn step(&mut self, timestep: Duration) -> (SpaceStepInfo, ())[src]

Advance time.

pub fn insert_anonymous<T>(&mut self, value: T) -> URef<T> where
    Self: UniverseIndex<T>, 
[src]

Trait Implementations

impl Default for Universe[src]

impl UniverseIndex<Camera> for Universe[src]

impl UniverseIndex<Space> for Universe[src]

Auto Trait Implementations

impl !RefUnwindSafe for Universe

impl !Send for Universe

impl !Sync for Universe

impl Unpin for Universe

impl !UnwindSafe for Universe

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> Erased for T[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.

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