Trait abc_parser::datatypes::writer::ToABC[][src]

pub trait ToABC {
    fn to_abc(&self) -> String;
}

Required Methods

Creates a valid ABC text representation of the object.

Implementations on Foreign Types

impl<T> ToABC for Option<T> where
    T: ToABC
[src]

Implementors