[][src]Enum sulis_state::NextGameStep

pub enum NextGameStep {
    Exit,
    NewCampaign {
        pc_actor: Rc<Actor>,
    },
    LoadCampaign {
        save_state: Box<SaveState>,
    },
    LoadModuleAndNewCampaign {
        pc_actor: Rc<Actor>,
        party_actors: Vec<Rc<Actor>>,
        flags: HashMap<String, String>,
        module_dir: String,
    },
    MainMenu,
    MainMenuReloadResources,
    RecreateIO,
}

Variants

Exit
NewCampaign

Fields of NewCampaign

pc_actor: Rc<Actor>
LoadCampaign

Fields of LoadCampaign

save_state: Box<SaveState>
LoadModuleAndNewCampaign

Fields of LoadModuleAndNewCampaign

pc_actor: Rc<Actor>party_actors: Vec<Rc<Actor>>flags: HashMap<String, String>module_dir: String
MainMenu
MainMenuReloadResources
RecreateIO

Trait Implementations

impl Debug for NextGameStep[src]

Auto Trait Implementations

impl !RefUnwindSafe for NextGameStep

impl !Send for NextGameStep

impl !Sync for NextGameStep

impl Unpin for NextGameStep

impl !UnwindSafe for NextGameStep

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, 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>, 
[src]