pub struct RemoteControlClientsListParams {
pub cursor: Option<String>,
pub environment_id: String,
pub limit: Option<u32>,
pub order: Option<RemoteControlClientsListOrder>,
}Expand description
RemoteControlClientsListParams
JSON schema
{
"title": "RemoteControlClientsListParams",
"type": "object",
"required": [
"environmentId"
],
"properties": {
"cursor": {
"type": [
"string",
"null"
]
},
"environmentId": {
"type": "string"
},
"limit": {
"type": [
"integer",
"null"
],
"format": "uint32",
"minimum": 0.0
},
"order": {
"anyOf": [
{
"$ref": "#/definitions/RemoteControlClientsListOrder"
},
{
"type": "null"
}
]
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}Fields§
§cursor: Option<String>§environment_id: String§limit: Option<u32>§order: Option<RemoteControlClientsListOrder>Trait Implementations§
Source§impl Clone for RemoteControlClientsListParams
impl Clone for RemoteControlClientsListParams
Source§fn clone(&self) -> RemoteControlClientsListParams
fn clone(&self) -> RemoteControlClientsListParams
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 RemoteControlClientsListParams
impl<'de> Deserialize<'de> for RemoteControlClientsListParams
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 RemoteControlClientsListParams
impl RefUnwindSafe for RemoteControlClientsListParams
impl Send for RemoteControlClientsListParams
impl Sync for RemoteControlClientsListParams
impl Unpin for RemoteControlClientsListParams
impl UnsafeUnpin for RemoteControlClientsListParams
impl UnwindSafe for RemoteControlClientsListParams
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