[][src]Struct sylasteven_system_pns::Simulation

pub struct Simulation {
    pub net: SimulatedNet,
}

The net simulation system.

Fields

net: SimulatedNet

The inner net which does the real simulation.

Methods

impl Simulation[src]

pub fn new() -> Simulation[src]

Creates a new simulation system containing an empty net.

pub fn load(file: &str) -> Simulation[src]

Creates a new simulation system containing a net loaded from specified file.

pub fn from_net(net: Net) -> Simulation[src]

Creates a new simulation system containing the supplied net as empty simulated net.

pub fn from_simulated_net(net: SimulatedNet) -> Simulation[src]

Creates a new simulation system containing the supplied simulated net.

Trait Implementations

impl<H: Handler> System<H> for Simulation where
    H::Event: From<SimulationEvent>, 
[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]