Type Alias MR
Source pub type MR = MgmtResponse;
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),
}