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