pub struct FunctionInfo {
pub name: String,
pub description: String,
pub flags: Vec<String>,
}
Expand description
Sub-result for the function_list
command.
Fields§
§name: String
the name of the function.
description: String
the function’s description.
flags: Vec<String>
an array of function flags.
Trait Implementations§
Source§impl Debug for FunctionInfo
impl Debug for FunctionInfo
Source§impl<'de> Deserialize<'de> for FunctionInfo
impl<'de> Deserialize<'de> for FunctionInfo
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 FunctionInfo
impl RefUnwindSafe for FunctionInfo
impl Send for FunctionInfo
impl Sync for FunctionInfo
impl Unpin for FunctionInfo
impl UnwindSafe for FunctionInfo
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