pub struct RemoteControlPairingStartParams {
pub manual_code: Option<bool>,
}Expand description
RemoteControlPairingStartParams
JSON schema
{
"title": "RemoteControlPairingStartParams",
"type": "object",
"properties": {
"manualCode": {
"type": "boolean"
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}Fields§
§manual_code: Option<bool>Trait Implementations§
Source§impl Clone for RemoteControlPairingStartParams
impl Clone for RemoteControlPairingStartParams
Source§fn clone(&self) -> RemoteControlPairingStartParams
fn clone(&self) -> RemoteControlPairingStartParams
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 RemoteControlPairingStartParams
impl<'de> Deserialize<'de> for RemoteControlPairingStartParams
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 RemoteControlPairingStartParams
impl RefUnwindSafe for RemoteControlPairingStartParams
impl Send for RemoteControlPairingStartParams
impl Sync for RemoteControlPairingStartParams
impl Unpin for RemoteControlPairingStartParams
impl UnsafeUnpin for RemoteControlPairingStartParams
impl UnwindSafe for RemoteControlPairingStartParams
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