pub struct RemoteControlPairingStartResponse {
pub environment_id: String,
pub expires_at: i64,
pub manual_pairing_code: Option<String>,
pub pairing_code: String,
}Expand description
RemoteControlPairingStartResponse
JSON schema
{
"title": "RemoteControlPairingStartResponse",
"type": "object",
"required": [
"environmentId",
"expiresAt",
"pairingCode"
],
"properties": {
"environmentId": {
"type": "string"
},
"expiresAt": {
"type": "integer",
"format": "int64"
},
"manualPairingCode": {
"type": [
"string",
"null"
]
},
"pairingCode": {
"type": "string"
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}Fields§
§environment_id: String§expires_at: i64§manual_pairing_code: Option<String>§pairing_code: StringTrait Implementations§
Source§impl Clone for RemoteControlPairingStartResponse
impl Clone for RemoteControlPairingStartResponse
Source§fn clone(&self) -> RemoteControlPairingStartResponse
fn clone(&self) -> RemoteControlPairingStartResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for RemoteControlPairingStartResponse
impl<'de> Deserialize<'de> for RemoteControlPairingStartResponse
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
Auto Trait Implementations§
impl Freeze for RemoteControlPairingStartResponse
impl RefUnwindSafe for RemoteControlPairingStartResponse
impl Send for RemoteControlPairingStartResponse
impl Sync for RemoteControlPairingStartResponse
impl Unpin for RemoteControlPairingStartResponse
impl UnsafeUnpin for RemoteControlPairingStartResponse
impl UnwindSafe for RemoteControlPairingStartResponse
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