[][src]Enum humblegen::Artifact

pub enum Artifact {
    TypesOnly,
    ClientEndpoints,
    ServerEndpoints,
}

Which artifacts to produce in addition to user defined types

Variants

TypesOnly

Only generate user defined type definitions

ClientEndpoints

Generate encoders, decoders and client-side REST API endpoints

ServerEndpoints

Generate encoders, decoders and server-side REST API endpoints

Trait Implementations

impl Clone for Artifact[src]

impl Copy for Artifact[src]

impl Debug for Artifact[src]

impl Default for Artifact[src]

impl Display for Artifact[src]

impl Eq for Artifact[src]

impl PartialEq<Artifact> for Artifact[src]

impl StructuralEq for Artifact[src]

impl StructuralPartialEq for Artifact[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.