pub trait SymPair {
    // Required method
    fn sym_pair(self) -> (Option<Robj>, Robj);
}

Required Methods§

source

fn sym_pair(self) -> (Option<Robj>, Robj)

Implementations on Foreign Types§

source§

impl<S, R> SymPair for &(S, R)
where S: AsRef<str>, R: Into<Robj> + Clone,

source§

impl<S, R> SymPair for (S, R)
where S: AsRef<str>, R: Into<Robj>,

Implementors§