pub trait ComposeFunc { // Required method fn compose(&self, a: char, b: char) -> Option<char>; }
An object to compose two characters.
Given two code points, return the composed code point.