pub struct CommandsResponse {
pub name: String,
pub subcommands: Vec<CommandsResponse>,
pub options: Vec<CommandsResponseOptions>,
}
Fields§
§name: String
§subcommands: Vec<CommandsResponse>
§options: Vec<CommandsResponseOptions>
Trait Implementations§
Source§impl Debug for CommandsResponse
impl Debug for CommandsResponse
Source§impl<'de> Deserialize<'de> for CommandsResponse
impl<'de> Deserialize<'de> for CommandsResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CommandsResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CommandsResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CommandsResponse
impl RefUnwindSafe for CommandsResponse
impl Send for CommandsResponse
impl Sync for CommandsResponse
impl Unpin for CommandsResponse
impl UnwindSafe for CommandsResponse
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