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