Trait onepassword_cli::SecondCmd[][src]

pub trait SecondCmd {
    type Output: DeserializeOwned;
    type First: FirstCmd + Clone;
    fn first(&self) -> Self::First;
fn cmd(&self) -> String;
fn flags(&self) -> Vec<String>; }

Associated Types

Loading content...

Required methods

fn first(&self) -> Self::First[src]

fn cmd(&self) -> String[src]

fn flags(&self) -> Vec<String>[src]

Loading content...

Implementors

impl SecondCmd for AccountCmd[src]

type Output = Account

type First = GetCmd

impl SecondCmd for CreateDocumentCmd[src]

type Output = CreateDocument

type First = CreateCmd

impl SecondCmd for GetDocumentCmd[src]

type Output = Value

type First = GetCmd

impl SecondCmd for GetItemCmd[src]

type Output = GetItem

type First = GetCmd

impl SecondCmd for GetTotpCmd[src]

type Output = Value

type First = GetCmd

impl SecondCmd for ItemLiteCmd[src]

type Output = ItemLite

type First = GetCmd

impl SecondCmd for ListDocumentsCmd[src]

type Output = Vec<ListDocument>

type First = ListCmd

impl SecondCmd for ListItemsCmd[src]

type Output = Vec<ListItem>

type First = ListCmd

Loading content...