pub struct RcListResponseCommandsItem {
pub auth_required: Option<bool>,
pub help: Option<String>,
pub needs_request: Option<bool>,
pub needs_response: Option<bool>,
pub path: Option<String>,
pub title: Option<String>,
}Expand description
RcListResponseCommandsItem
JSON schema
{
"type": "object",
"properties": {
"AuthRequired": {
"type": "boolean"
},
"Help": {
"type": "string"
},
"NeedsRequest": {
"type": "boolean"
},
"NeedsResponse": {
"type": "boolean"
},
"Path": {
"type": "string"
},
"Title": {
"type": "string"
}
},
"additionalProperties": true
}Fields§
§auth_required: Option<bool>§help: Option<String>§needs_request: Option<bool>§needs_response: Option<bool>§path: Option<String>§title: Option<String>Trait Implementations§
Source§impl Clone for RcListResponseCommandsItem
impl Clone for RcListResponseCommandsItem
Source§fn clone(&self) -> RcListResponseCommandsItem
fn clone(&self) -> RcListResponseCommandsItem
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 RcListResponseCommandsItem
impl Debug for RcListResponseCommandsItem
Source§impl Default for RcListResponseCommandsItem
impl Default for RcListResponseCommandsItem
Source§impl<'de> Deserialize<'de> for RcListResponseCommandsItem
impl<'de> Deserialize<'de> for RcListResponseCommandsItem
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<&RcListResponseCommandsItem> for RcListResponseCommandsItem
impl From<&RcListResponseCommandsItem> for RcListResponseCommandsItem
Source§fn from(value: &RcListResponseCommandsItem) -> Self
fn from(value: &RcListResponseCommandsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RcListResponseCommandsItem
impl RefUnwindSafe for RcListResponseCommandsItem
impl Send for RcListResponseCommandsItem
impl Sync for RcListResponseCommandsItem
impl Unpin for RcListResponseCommandsItem
impl UnwindSafe for RcListResponseCommandsItem
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