Enum hypothesis::cli::HypothesisCLI[][src]

pub enum HypothesisCLI {
    Annotations {
        cmd: AnnotationsCommand,
    },
    Groups {
        cmd: GroupsCommand,
    },
    Profile {
        cmd: ProfileCommand,
    },
    Complete {
        shell: Shell,
    },
}

Variants

Annotations

Manage annotations

Fields of Annotations

cmd: AnnotationsCommand
Groups

Manage groups

Fields of Groups

cmd: GroupsCommand
Profile

Manage user profile

Fields of Profile

cmd: ProfileCommand
Complete

Generate shell completions

Fields of Complete

shell: Shell

Implementations

impl HypothesisCLI[src]

pub async fn run(self, client: Hypothesis) -> Result<()>[src]

Trait Implementations

impl Debug for HypothesisCLI[src]

impl StructOpt for HypothesisCLI[src]

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

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

impl<D> OwoColorize for D

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.