1 2 3 4 5 6 7 8 9
use visioncortex::BinaryImage; /// To generate a Symcode image for a given Symcode representation pub trait SymcodeGenerator { type SymcodeRepresentation; fn generate(&self, symcode: Self::SymcodeRepresentation) -> BinaryImage; }