Struct bones_lib::prelude::SessionStarted  
pub struct SessionStarted {
    pub startup_systems_executed: bool,
    pub startup_resources_inserted: bool,
}Expand description
Resource tracking if Session has started (startup systems executed and resources inserted). If field is set to false, that operation needs to be handled on next stage run. If resource is not present, assumed to have not started (and will be initialized upon next stage execution).
Fields§
§startup_systems_executed: boolHave startup systems executed?
startup_resources_inserted: boolHave startup resources beeen inserted into World?
Trait Implementations§
§impl Clone for SessionStarted
 
impl Clone for SessionStarted
§fn clone(&self) -> SessionStarted
 
fn clone(&self) -> SessionStarted
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read more§impl Default for SessionStarted
 
impl Default for SessionStarted
§fn default() -> SessionStarted
 
fn default() -> SessionStarted
Returns the “default value” for a type. Read more
§impl HasSchema for SessionStarted
 
impl HasSchema for SessionStarted
§fn register_schema()
 
fn register_schema()
Register this schema with the global schema registry. Read more
§fn cast<T>(this: &Self) -> &Twhere
    T: HasSchema,
 
fn cast<T>(this: &Self) -> &Twhere
    T: HasSchema,
Cast a reference of this type to a reference of another type with the same memory layout. Read more
§fn try_cast<T>(this: &Self) -> Result<&T, SchemaMismatchError>where
    T: HasSchema,
 
fn try_cast<T>(this: &Self) -> Result<&T, SchemaMismatchError>where
    T: HasSchema,
Cast a reference of this type to a reference of another type with the same memory layout. Read more
§fn cast_mut<T>(this: &mut Self) -> &mut Twhere
    T: HasSchema,
 
fn cast_mut<T>(this: &mut Self) -> &mut Twhere
    T: HasSchema,
Cast a mutable reference of this type to a reference of another type with the same memory
layout. Read more
§fn try_cast_mut<T>(this: &mut Self) -> Result<&mut T, SchemaMismatchError>where
    T: HasSchema,
 
fn try_cast_mut<T>(this: &mut Self) -> Result<&mut T, SchemaMismatchError>where
    T: HasSchema,
Cast a mutable reference of this type to a reference of another type with the same memory
layout. Read more
§fn as_schema_ref(&self) -> SchemaRef<'_>where
    Self: Sized,
 
fn as_schema_ref(&self) -> SchemaRef<'_>where
    Self: Sized,
Converts a reference of 
T to a SchemaRef§fn as_schema_mut(&mut self) -> SchemaRefMut<'_>where
    Self: Sized,
 
fn as_schema_mut(&mut self) -> SchemaRefMut<'_>where
    Self: Sized,
Converts a reference of 
T to a SchemaRefMutimpl Copy for SessionStarted
Auto Trait Implementations§
impl Freeze for SessionStarted
impl RefUnwindSafe for SessionStarted
impl Send for SessionStarted
impl Sync for SessionStarted
impl Unpin for SessionStarted
impl UnwindSafe for SessionStarted
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
    T: Copy,
 
impl<T> CloneToUninit for Twhere
    T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
 
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
 
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)§impl<T> FromWorld for Twhere
    T: Default,
 
impl<T> FromWorld for Twhere
    T: Default,
§fn from_world(_world: &World) -> T
 
fn from_world(_world: &World) -> T
Creates 
Self using data from the given World.