ToABC

Trait ToABC 

Source
pub trait ToABC {
    // Required method
    fn to_abc(&self) -> String;
}

Required Methods§

Source

fn to_abc(&self) -> String

Creates a valid ABC text representation of the object.

Implementations on Foreign Types§

Source§

impl ToABC for Vec<Decoration>

Source§

fn to_abc(&self) -> String

Source§

impl<T> ToABC for Option<T>
where T: ToABC,

Source§

fn to_abc(&self) -> String

Implementors§