Enum sc2_proto::sc2api::Request_oneof_request[][src]

pub enum Request_oneof_request {
    create_game(RequestCreateGame),
    join_game(RequestJoinGame),
    restart_game(RequestRestartGame),
    start_replay(RequestStartReplay),
    leave_game(RequestLeaveGame),
    quick_save(RequestQuickSave),
    quick_load(RequestQuickLoad),
    quit(RequestQuit),
    game_info(RequestGameInfo),
    observation(RequestObservation),
    action(RequestAction),
    obs_action(RequestObserverAction),
    step(RequestStep),
    data(RequestData),
    query(RequestQuery),
    save_replay(RequestSaveReplay),
    map_command(RequestMapCommand),
    replay_info(RequestReplayInfo),
    available_maps(RequestAvailableMaps),
    save_map(RequestSaveMap),
    ping(RequestPing),
    debug(RequestDebug),
}

Variants

create_game(RequestCreateGame)
join_game(RequestJoinGame)
restart_game(RequestRestartGame)
start_replay(RequestStartReplay)
leave_game(RequestLeaveGame)
quick_save(RequestQuickSave)
quick_load(RequestQuickLoad)
game_info(RequestGameInfo)
observation(RequestObservation)
save_replay(RequestSaveReplay)
map_command(RequestMapCommand)
replay_info(RequestReplayInfo)
available_maps(RequestAvailableMaps)
save_map(RequestSaveMap)

Trait Implementations

impl Clone for Request_oneof_request[src]

impl Debug for Request_oneof_request[src]

impl PartialEq<Request_oneof_request> for Request_oneof_request[src]

impl StructuralPartialEq for Request_oneof_request[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.