pub trait ToPlain {
    // Required method
    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§

source

fn to_plain(&self) -> String

Returns the conjure PLAIN string representation of this value.

Implementors§

source§

impl<T> ToPlain for T
where T: ?Sized + Plain,