Trait symbolic_expressions::IntoSexp [] [src]

pub trait IntoSexp {
    fn into_sexp(&self) -> Sexp;
}

like Into trait but works from a ref avoiding consumption or expensive clone

Required Methods

fn into_sexp(&self) -> Sexp

convert self into a Sexp

Implementors