pub enum SubCommand {
Show 26 variants Run(Run), Sandbox(Sandbox), Login(Login), New(New), Publish(Publish), Install(Install), Search(Search), Pkg(Args), Add(Args), Select(Args), Delete(Args), Activity(Args), Scope(Args), Noscope(Args), Autoscope(Args), Autonoscope(Args), Rescope(Args), Workspace(Args), Cal(Args), Notify(Args), Fsck(Args), Export(Args), Stats(Args), Repl, Paths, Completions(Completions),
}

Variants

Run(Run)

Run a module directly

Sandbox(Sandbox)

For internal use

Login(Login)

Login to the registry for publishing

New(New)

Create a new module

Publish(Publish)

Publish a script to the registry

Install(Install)

Install a module from the registry

Search(Search)

Search in the registry

Pkg(Args)

The sn0int package manager

Add(Args)

Insert into the database

Select(Args)

Select from the database

Delete(Args)

Delete from the database

Activity(Args)

Query logged activity

Scope(Args)

Include entities in the scope

Noscope(Args)

Exclude entities from scope

Autoscope(Args)

Manage autoscope rules

Autonoscope(Args)

Manage autonoscope rules

Rescope(Args)

Rescope all entities based on autonoscope rules

Workspace(Args)

Manage workspaces

Cal(Args)

Calendar

Notify(Args)

Notify

Fsck(Args)

Verify blob storage for corrupt and dangling blobs

Export(Args)

Export a workspace for external processing

Stats(Args)

Show statistics about your current workspace

Repl

Run a lua repl

Paths

Show paths of various file system locations

Completions(Completions)

Generate shell completions

Trait Implementations

Formats the value using the given formatter. Read more

Returns clap::App corresponding to the struct.

Builds the struct from clap::ArgMatches. It’s guaranteed to succeed if matches originates from an App generated by StructOpt::clap called on the same type, otherwise it must panic. Read more

Builds the struct from the command line arguments (std::env::args_os). Calls clap::Error::exit on failure, printing the error message and aborting the program. Read more

Builds the struct from the command line arguments (std::env::args_os). Unlike StructOpt::from_args, returns clap::Error on failure instead of aborting the program, so calling .exit is up to you. Read more

Gets the struct from any iterator such as a Vec of your making. Print the error message and quit the program in case of failure. Read more

Gets the struct from any iterator such as a Vec of your making. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Convert self to an expression for Diesel’s query builder. Read more

Convert &self to an expression for Diesel’s query builder. Read more

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.