[][src]Trait conjure_object::ToPlain

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

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

fn to_plain(&self) -> String

Returns the conjure PLAIN string representation of this value.

Loading content...

Implementors

impl<T: ?Sized> ToPlain for T where
    T: Plain
[src]

Loading content...