Trait aterm::print::ATermWrite [] [src]

pub trait ATermWrite {
    fn to_ascii<W: Write>(&self, writer: &mut W) -> Result;
    fn to_taf<W: Write>(&self, writer: &mut W) -> Result;
    fn to_baf<W: Write>(&self, writer: &mut W) -> Result;
    fn to_saf<W: Write>(&self, writer: &mut W) -> Result;

    fn to_ascii_string(&self) -> Result<String, Error> { ... }
    fn to_taf_string(&self) -> Result<String, Error> { ... }
    fn to_baf_string(&self) -> Result<String, Error> { ... }
    fn to_saf_string(&self) -> Result<String, Error> { ... }
}

Required Methods

Provided Methods

Implementors