Skip to main content

MR

Type Alias MR 

Source
pub type MR = MgmtResponse;

Aliased Type§

pub enum MR {
Show 13 variants Fine, Progress(ProgressInfo<'static>), Error { error: MgmtError, }, AlterGame { error: Option<MgmtError>, responses: Vec<MgmtGameResponse>, }, AccountsList(Vec<Arc<AccountName>>), GamesList(Vec<Arc<InstanceName>>), Libraries(Vec<LibraryEnquiryData>), LibraryItems(Vec<ItemEnquiryData>), Bundles { bundles: BTreeMap<Id, State>, }, Bundle { bundle: Id, }, SshKeys(Vec<MgmtKeyReport>), SshKeyAdded { index: usize, id: Id, }, ThisConnAuthBy(MgmtThisConnAuthBy),
}

Variants§

§

Fine

§

Progress(ProgressInfo<'static>)

§

Error

Fields

§

AlterGame

Fields

§

AccountsList(Vec<Arc<AccountName>>)

§

GamesList(Vec<Arc<InstanceName>>)

§

Libraries(Vec<LibraryEnquiryData>)

§

LibraryItems(Vec<ItemEnquiryData>)

§

Bundles

Fields

§bundles: BTreeMap<Id, State>
§

Bundle

Fields

§bundle: Id
§

SshKeys(Vec<MgmtKeyReport>)

§

SshKeyAdded

Fields

§index: usize
§id: Id
§

ThisConnAuthBy(MgmtThisConnAuthBy)