Trait implemented by objects that can be encoded into a canvas
| 10 | /// Trait implemented by objects that can be encoded into a canvas |
| 11 | /// |
| 12 | pub trait CanvasEncoding<Buffer> { |
| 13 | /// |
| 14 | /// Encodes this item by appending it to the specified string |
| 15 | /// |
| 16 | fn encode_canvas(&self, append_to: &mut Buffer); |
| 17 | } |
| 18 | |
| 19 | pub (crate) const ENCODING_CHAR_SET: [char; 64] = [ |
| 20 | 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', |
nothing calls this directly
no outgoing calls
no test coverage detected