Trait rsmt2::to_smt::Sym2Smt [] [src]

pub trait Sym2Smt<Info> {
    fn sym_to_smt2<Writer>(&self, _: &mut Writer, _: Info) -> SmtRes<()>
    where
        Writer: Write
; }

A symbol printable in the SMT Lib 2 standard given some info.

Required Methods

Prints a symbol to a writer given some info.

Implementations on Foreign Types

impl<'a, T> Sym2Smt<T> for &'a str
[src]

[src]

impl<T> Sym2Smt<T> for str
[src]

[src]

impl<T> Sym2Smt<T> for String
[src]

[src]

Implementors