Trait Serializable

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

Required Methods§

Source

fn serialize(&self) -> String

Serialize the matrix, return it in the form {{a, b, c}, {d, e, f}, {g, h, i}}

Implementors§