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

convert self into a Sexp

Implementors