pub trait TryFromPair {
    type Error;

    // Required method
    fn try_from_pair(pair: Pair<'_>) -> Result<Command, Self::Error>;
}

Required Associated Types§

Required Methods§

source

fn try_from_pair(pair: Pair<'_>) -> Result<Command, Self::Error>

Implementations on Foreign Types§

source§

impl TryFromPair for Command

§

type Error = Error

source§

fn try_from_pair(record: Pair<'_>) -> Result<Self, Self::Error>

Implementors§