Enum librojo::cli::Subcommand[][src]

pub enum Subcommand {
    Init(InitCommand),
    Serve(ServeCommand),
    Build(BuildCommand),
    Upload(UploadCommand),
    Doc,
    Plugin(PluginCommand),
}

Variants

Creates a new Rojo project.

Serves the project's files for use with the Rojo Studio plugin.

Generates a model or place file from the project.

Generates a place or model file out of the project and uploads it to Roblox.

Doc

Open Rojo's documentation in your browser.

Manages Rojo's Roblox Studio plugin.

Trait Implementations

impl Debug for Subcommand[src]

impl StructOpt for Subcommand[src]

impl StructOptInternal for Subcommand[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,