pub struct CommandInfo {
pub name: String,
pub file_path: String,
pub line_number: usize,
pub parameters: Vec<ParameterInfo>,
pub return_type: String,
pub return_type_ts: String,
pub is_async: bool,
pub channels: Vec<ChannelInfo>,
}Fields§
§name: String§file_path: String§line_number: usize§parameters: Vec<ParameterInfo>§return_type: String§return_type_ts: String§is_async: bool§channels: Vec<ChannelInfo>Trait Implementations§
Source§impl Debug for CommandInfo
impl Debug for CommandInfo
Source§impl<'de> Deserialize<'de> for CommandInfo
impl<'de> Deserialize<'de> for CommandInfo
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 CommandInfo
impl RefUnwindSafe for CommandInfo
impl Send for CommandInfo
impl Sync for CommandInfo
impl Unpin for CommandInfo
impl UnwindSafe for CommandInfo
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