pub struct RcListResponse {
pub commands: Vec<RcListResponseCommandsItem>,
}Expand description
RcListResponse
JSON schema
{
"type": "object",
"required": [
"commands"
],
"properties": {
"commands": {
"type": "array",
"items": {
"type": "object",
"properties": {
"AuthRequired": {
"type": "boolean"
},
"Help": {
"type": "string"
},
"NeedsRequest": {
"type": "boolean"
},
"NeedsResponse": {
"type": "boolean"
},
"Path": {
"type": "string"
},
"Title": {
"type": "string"
}
},
"additionalProperties": true
}
}
}
}Fields§
§commands: Vec<RcListResponseCommandsItem>Trait Implementations§
Source§impl Clone for RcListResponse
impl Clone for RcListResponse
Source§fn clone(&self) -> RcListResponse
fn clone(&self) -> RcListResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 RcListResponse
impl Debug for RcListResponse
Source§impl<'de> Deserialize<'de> for RcListResponse
impl<'de> Deserialize<'de> for RcListResponse
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<&RcListResponse> for RcListResponse
impl From<&RcListResponse> for RcListResponse
Source§fn from(value: &RcListResponse) -> Self
fn from(value: &RcListResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RcListResponse
impl RefUnwindSafe for RcListResponse
impl Send for RcListResponse
impl Sync for RcListResponse
impl Unpin for RcListResponse
impl UnwindSafe for RcListResponse
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