Enum perseus_cli::parse::SnoopSubcommand [−][src]
pub enum SnoopSubcommand {
Build,
WasmBuild(SnoopWasmOpts),
Serve(SnoopServeOpts),
}Variants
Build
Snoops on the static generation process (this will let you see dbg! calls and the like)
WasmBuild(SnoopWasmOpts)
Tuple Fields
Snoops on the Wasm building process (mostly for debugging errors)
Serve(SnoopServeOpts)
Tuple Fields
Snoops on the server process (run perseus build before this)
Trait Implementations
Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
Assign values from ArgMatches to self.
fn parse_from<I, T>(itr: I) -> Self where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
fn parse_from<I, T>(itr: I) -> Self where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
Parse from iterator, exit on error
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error> where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error> where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
Parse from iterator, return Err on error.
fn update_from<I, T>(&mut self, itr: I) where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
fn update_from<I, T>(&mut self, itr: I) where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
Update from iterator, exit on error
fn try_update_from<I, T>(&mut self, itr: I) -> Result<(), Error> where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
fn try_update_from<I, T>(&mut self, itr: I) -> Result<(), Error> where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
Update from iterator, return Err on error.
Test whether Self can parse a specific subcommand
Auto Trait Implementations
impl RefUnwindSafe for SnoopSubcommand
impl Send for SnoopSubcommand
impl Sync for SnoopSubcommand
impl Unpin for SnoopSubcommand
impl UnwindSafe for SnoopSubcommand
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
