pub struct RemoteControlClientsListResponse {
pub data: Vec<RemoteControlClient>,
pub next_cursor: Option<String>,
}Expand description
RemoteControlClientsListResponse
JSON schema
{
"title": "RemoteControlClientsListResponse",
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/definitions/RemoteControlClient"
}
},
"nextCursor": {
"type": [
"string",
"null"
]
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}Fields§
§data: Vec<RemoteControlClient>§next_cursor: Option<String>Trait Implementations§
Source§impl Clone for RemoteControlClientsListResponse
impl Clone for RemoteControlClientsListResponse
Source§fn clone(&self) -> RemoteControlClientsListResponse
fn clone(&self) -> RemoteControlClientsListResponse
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 RemoteControlClientsListResponse
impl<'de> Deserialize<'de> for RemoteControlClientsListResponse
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 RemoteControlClientsListResponse
impl RefUnwindSafe for RemoteControlClientsListResponse
impl Send for RemoteControlClientsListResponse
impl Sync for RemoteControlClientsListResponse
impl Unpin for RemoteControlClientsListResponse
impl UnsafeUnpin for RemoteControlClientsListResponse
impl UnwindSafe for RemoteControlClientsListResponse
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