Enum wapm_cli::commands::KeyOpt[][src]

pub enum KeyOpt {
    List(List),
    Register(Register),
    Import(Import),
    Delete(Delete),
    Generate(Generate),
}

Variants

List(List)

List keys registered with wapm

Register(Register)

Register a personal key pair with wapm

Import(Import)

Import a public key from somewhere

Delete(Delete)

Delete a keypair from wapm

Generate(Generate)

Generate a keypair for use with package signing

Trait Implementations

impl Debug for KeyOpt[src]

impl StructOpt for KeyOpt[src]

impl StructOptInternal for KeyOpt[src]

Auto Trait Implementations

impl RefUnwindSafe for KeyOpt

impl Send for KeyOpt

impl Sync for KeyOpt

impl Unpin for KeyOpt

impl UnwindSafe for KeyOpt

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<T> Same<T> for T

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>,