Enum otter_api_tests::MgmtCommand[][src]

pub enum MgmtCommand {
Show variants Noop, SetSuperuser(bool), CreateAccount(AccountDetails), UpdateAccount(AccountDetails), DeleteAccount(AccountName), ListAccounts { all: Option<bool>, }, SelectAccount(AccountName), CheckAccount, CreateGame { game: InstanceName, insns: Vec<MgmtGameInstruction, Global>, }, ListGames { all: Option<bool>, }, AlterGame { game: InstanceName, insns: Vec<MgmtGameInstruction, Global>, how: MgmtGameUpdateMode, }, DestroyGame { game: InstanceName, }, LibraryListByGlob { glob: ItemSpec, }, LoadFakeRng(Vec<String, Global>),
}

Variants

Noop
SetSuperuser(bool)
CreateAccount(AccountDetails)
UpdateAccount(AccountDetails)
DeleteAccount(AccountName)
ListAccounts

Fields of ListAccounts

all: Option<bool>
SelectAccount(AccountName)
CheckAccount
CreateGame

Fields of CreateGame

game: InstanceNameinsns: Vec<MgmtGameInstruction, Global>
ListGames

Fields of ListGames

all: Option<bool>
AlterGame

Fields of AlterGame

game: InstanceNameinsns: Vec<MgmtGameInstruction, Global>how: MgmtGameUpdateMode
DestroyGame

Fields of DestroyGame

game: InstanceName
LibraryListByGlob

Fields of LibraryListByGlob

glob: ItemSpec
LoadFakeRng(Vec<String, Global>)

Trait Implementations

impl Debug for MgmtCommand[src]

impl<'de> Deserialize<'de> for MgmtCommand[src]

impl Serialize for MgmtCommand[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<A> DynCastExt for A

impl<T> From<T> for T[src]

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

impl<T> Serialize for T where
    T: Serialize + ?Sized
[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>,