pub struct RcNoopAuthRequest {
pub async_: Option<bool>,
}Expand description
RcNoopAuthRequest
JSON schema
{
"type": "object",
"properties": {
"_async": {
"description": "Run the command asynchronously. Returns a job id
immediately.",
"type": "boolean"
}
},
"additionalProperties": true
}Fields§
§async_: Option<bool>Run the command asynchronously. Returns a job id immediately.
Trait Implementations§
Source§impl Clone for RcNoopAuthRequest
impl Clone for RcNoopAuthRequest
Source§fn clone(&self) -> RcNoopAuthRequest
fn clone(&self) -> RcNoopAuthRequest
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 Debug for RcNoopAuthRequest
impl Debug for RcNoopAuthRequest
Source§impl Default for RcNoopAuthRequest
impl Default for RcNoopAuthRequest
Source§impl<'de> Deserialize<'de> for RcNoopAuthRequest
impl<'de> Deserialize<'de> for RcNoopAuthRequest
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
Source§impl From<&RcNoopAuthRequest> for RcNoopAuthRequest
impl From<&RcNoopAuthRequest> for RcNoopAuthRequest
Source§fn from(value: &RcNoopAuthRequest) -> Self
fn from(value: &RcNoopAuthRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RcNoopAuthRequest
impl RefUnwindSafe for RcNoopAuthRequest
impl Send for RcNoopAuthRequest
impl Sync for RcNoopAuthRequest
impl Unpin for RcNoopAuthRequest
impl UnsafeUnpin for RcNoopAuthRequest
impl UnwindSafe for RcNoopAuthRequest
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