Struct bbecs::world::World[][src]

pub struct World {
    pub entity_data: EntityData,
    // some fields omitted
}

Fields

entity_data: EntityData

Implementations

impl World[src]

pub fn new() -> Self[src]

pub fn register<S: ToString>(&mut self, name: S) -> Result<()>[src]

pub fn spawn_entity(&mut self) -> Result<&mut Self>[src]

pub fn query(
    &self,
    names: Vec<&str>
) -> Result<HashMap<String, Vec<&ComponentData>>>
[src]

pub fn get_resource<S: Into<String>>(
    &self,
    name: S
) -> Result<&Rc<RefCell<Resource>>>
[src]

pub fn update(&mut self) -> Result<()>[src]

pub fn delete_by_id(&self, id: u32) -> Result<()>[src]

Trait Implementations

impl Default for World[src]

impl WorldMethods<Color> for World[src]

impl WorldMethods<Mesh> for World[src]

impl WorldMethods<Point> for World[src]

impl WorldMethods<String> for World[src]

impl WorldMethods<Text> for World[src]

impl WorldMethods<VirtualKeyCode> for World[src]

impl WorldMethods<bool> for World[src]

impl WorldMethods<f32> for World[src]

impl WorldMethods<u32> for World[src]

impl WorldMethods<usize> for World[src]

Auto Trait Implementations

impl !RefUnwindSafe for World

impl !Send for World

impl !Sync for World

impl Unpin for World

impl !UnwindSafe for World

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

type Output = T

Should always be Self

impl<T> SetParameter for T

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

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>,