pub trait ToPlain {
    fn to_plain(&self) -> String;
}
Expand description

A trait for converting a value to its Conjure PLAIN string representation.

This is implemented for all types that implement the Plain trait.

Required methods

Returns the conjure PLAIN string representation of this value.

Implementors