pub struct AutohostInstallEngineRequest {
pub command_id: Value,
pub data: AutohostInstallEngineRequestData,
pub message_id: String,
pub type_: Value,
}Expand description
AutohostInstallEngineRequest
JSON schema
{
"title": "AutohostInstallEngineRequest",
"type": "object",
"required": [
"commandId",
"data",
"messageId",
"type"
],
"properties": {
"commandId": {
"const": "autohost/installEngine"
},
"data": {
"title": "AutohostInstallEngineRequestData",
"examples": [
{
"version": "2025.01.5"
}
],
"type": "object",
"required": [
"version"
],
"properties": {
"version": {
"description": "Version of the engine to install",
"type": "string"
}
}
},
"messageId": {
"type": "string"
},
"type": {
"const": "request"
}
},
"tachyon": {
"scopes": [
"tachyon.lobby"
],
"source": "server",
"target": "autohost"
}
}Fields§
§command_id: Value§data: AutohostInstallEngineRequestData§message_id: String§type_: ValueImplementations§
Trait Implementations§
Source§impl Clone for AutohostInstallEngineRequest
impl Clone for AutohostInstallEngineRequest
Source§fn clone(&self) -> AutohostInstallEngineRequest
fn clone(&self) -> AutohostInstallEngineRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AutohostInstallEngineRequest
impl Debug for AutohostInstallEngineRequest
Source§impl<'de> Deserialize<'de> for AutohostInstallEngineRequest
impl<'de> Deserialize<'de> for AutohostInstallEngineRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<AutohostInstallEngineRequest> for AutohostInstallEngineRequest
impl From<AutohostInstallEngineRequest> for AutohostInstallEngineRequest
Source§fn from(value: AutohostInstallEngineRequest) -> Self
fn from(value: AutohostInstallEngineRequest) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AutohostInstallEngineRequest> for AutohostInstallEngineRequest
impl TryFrom<AutohostInstallEngineRequest> for AutohostInstallEngineRequest
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: AutohostInstallEngineRequest,
) -> Result<Self, ConversionError>
fn try_from( value: AutohostInstallEngineRequest, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AutohostInstallEngineRequest
impl RefUnwindSafe for AutohostInstallEngineRequest
impl Send for AutohostInstallEngineRequest
impl Sync for AutohostInstallEngineRequest
impl Unpin for AutohostInstallEngineRequest
impl UnsafeUnpin for AutohostInstallEngineRequest
impl UnwindSafe for AutohostInstallEngineRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more