pub trait Sort2Smt {
// Required method
fn sort_to_smt2<Writer>(&self, w: &mut Writer) -> SmtRes<()>
where Writer: Write;
}Expand description
A sort printable in the SMT-LIB 2 standard.
Required Methods§
Sourcefn sort_to_smt2<Writer>(&self, w: &mut Writer) -> SmtRes<()>where
Writer: Write,
fn sort_to_smt2<Writer>(&self, w: &mut Writer) -> SmtRes<()>where
Writer: Write,
Prints a sort to a writer info.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.