pub trait ToKif {
    fn to_kif<W: Write>(&self, sink: &mut W) -> Result;

    fn to_kif_owned(&self) -> String { ... }
}
Expand description

A type that is convertible to KIF format.

Required Methods

Write self in KIF format.

This function returns Err(core::fmt::Error) if and only if it fails to write to sink.

Provided Methods

Returns self’s string representation.

Implementors