pub struct NetworkSystem<C>where
C: Client + 'static,{ /* private fields */ }Trait Implementations§
Source§impl<C> Default for NetworkSystem<C>where
C: Client + 'static,
impl<C> Default for NetworkSystem<C>where
C: Client + 'static,
Source§impl<'s, C> System<'s> for NetworkSystem<C>where
C: Client + 'static,
impl<'s, C> System<'s> for NetworkSystem<C>where
C: Client + 'static,
Source§type SystemData = Write<'s, Network<C>, PanicHandler>
type SystemData = Write<'s, Network<C>, PanicHandler>
The resource bundle required to execute this system. Read more
Source§fn run(&mut self, network: Self::SystemData)
fn run(&mut self, network: 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<C> Freeze for NetworkSystem<C>
impl<C> RefUnwindSafe for NetworkSystem<C>where
C: RefUnwindSafe,
impl<C> Send for NetworkSystem<C>
impl<C> Sync for NetworkSystem<C>
impl<C> Unpin for NetworkSystem<C>where
C: Unpin,
impl<C> UnwindSafe for NetworkSystem<C>where
C: UnwindSafe,
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.