pub struct ExpectedCommands {
pub top_level: Vec<String>,
}Expand description
Subcommands the rubric claims exist. jig check --binary cross-
references this with the binary’s --help output.
Fields§
§top_level: Vec<String>Top-level subcommands (e.g. init, tree, spec).
Compared with the first column of <binary> --help.
Trait Implementations§
Source§impl Clone for ExpectedCommands
impl Clone for ExpectedCommands
Source§fn clone(&self) -> ExpectedCommands
fn clone(&self) -> ExpectedCommands
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ExpectedCommands
impl Debug for ExpectedCommands
Source§impl Default for ExpectedCommands
impl Default for ExpectedCommands
Source§fn default() -> ExpectedCommands
fn default() -> ExpectedCommands
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExpectedCommands
impl<'de> Deserialize<'de> for ExpectedCommands
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 ExpectedCommands
impl RefUnwindSafe for ExpectedCommands
impl Send for ExpectedCommands
impl Sync for ExpectedCommands
impl Unpin for ExpectedCommands
impl UnsafeUnpin for ExpectedCommands
impl UnwindSafe for ExpectedCommands
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