Enum corpus_manager_driver::Command[][src]

pub(crate) enum Command {
    Init {
        top_count: usize,
        all_versions: bool,
    },
    InitAll {
        all_versions: bool,
    },
    Compile {
        output_json: bool,
        memory_limit: usize,
        enable_networking: bool,
        use_original_rustc: bool,
        purge_build_dir: bool,
        compilation_timeout: u64,
        max_log_size: usize,
        custom_registry: Option<String>,
    },
    CheckCompilation {
        delete_failures: bool,
    },
    MoveExtracted {
        target_dir: PathBuf,
    },
    UpdateDatabase,
    RunQuery {
        query_name: String,
        report_path: PathBuf,
    },
}

Variants

Init

Fields of Init

top_count: usizeall_versions: bool
InitAll

Fields of InitAll

all_versions: bool
Compile

Fields of Compile

output_json: boolmemory_limit: usizeenable_networking: booluse_original_rustc: boolpurge_build_dir: boolcompilation_timeout: u64max_log_size: usizecustom_registry: Option<String>
CheckCompilation

Fields of CheckCompilation

delete_failures: bool
MoveExtracted

Fields of MoveExtracted

target_dir: PathBuf
UpdateDatabase
RunQuery

Fields of RunQuery

query_name: Stringreport_path: PathBuf

Trait Implementations

impl StructOpt for Command[src]

impl StructOptInternal for Command[src]

Auto Trait Implementations

impl RefUnwindSafe for Command

impl Send for Command

impl Sync for Command

impl Unpin for Command

impl UnwindSafe for Command

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]