pub struct RemoteControlPairingStatusParams {
pub manual_pairing_code: Option<String>,
pub pairing_code: Option<String>,
}Expand description
RemoteControlPairingStatusParams
JSON schema
{
"title": "RemoteControlPairingStatusParams",
"type": "object",
"properties": {
"manualPairingCode": {
"type": [
"string",
"null"
]
},
"pairingCode": {
"type": [
"string",
"null"
]
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}Fields§
§manual_pairing_code: Option<String>§pairing_code: Option<String>Trait Implementations§
Source§impl Clone for RemoteControlPairingStatusParams
impl Clone for RemoteControlPairingStatusParams
Source§fn clone(&self) -> RemoteControlPairingStatusParams
fn clone(&self) -> RemoteControlPairingStatusParams
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 RemoteControlPairingStatusParams
impl<'de> Deserialize<'de> for RemoteControlPairingStatusParams
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 RemoteControlPairingStatusParams
impl RefUnwindSafe for RemoteControlPairingStatusParams
impl Send for RemoteControlPairingStatusParams
impl Sync for RemoteControlPairingStatusParams
impl Unpin for RemoteControlPairingStatusParams
impl UnsafeUnpin for RemoteControlPairingStatusParams
impl UnwindSafe for RemoteControlPairingStatusParams
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