Struct oxygengine_script_flow::system::FlowSystem
source · pub struct FlowSystem;
Trait Implementations§
source§impl Default for FlowSystem
impl Default for FlowSystem
source§fn default() -> FlowSystem
fn default() -> FlowSystem
Returns the “default value” for a type. Read more
source§impl<'s> System<'s> for FlowSystem
impl<'s> System<'s> for FlowSystem
§type SystemData = Write<'s, FlowManager>
type SystemData = Write<'s, FlowManager>
The resource bundle required to execute this system. Read more
source§fn run(&mut self, manager: Self::SystemData)
fn run(&mut self, manager: Self::SystemData)
Executes the system with the required system
data.
source§fn running_time(&self) -> RunningTime
fn running_time(&self) -> RunningTime
Returns a hint how long the system needs for running.
This is used to optimize the way they’re executed (might
allow more parallelization). Read more
source§fn accessor<'b>(&'b self) -> AccessorCow<'a, 'b, Self>
fn accessor<'b>(&'b self) -> AccessorCow<'a, 'b, Self>
Return the accessor from the
SystemData
.Auto Trait Implementations§
impl Freeze for FlowSystem
impl RefUnwindSafe for FlowSystem
impl Send for FlowSystem
impl Sync for FlowSystem
impl Unpin for FlowSystem
impl UnwindSafe for FlowSystem
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> TryDefault for Twhere
T: Default,
impl<T> TryDefault for Twhere
T: Default,
source§fn try_default() -> Result<T, String>
fn try_default() -> Result<T, String>
Tries to create the default.
source§fn unwrap_default() -> Self
fn unwrap_default() -> Self
Calls
try_default
and panics on an error case.