Trait MirroringFunc

Source
pub trait MirroringFunc {
    // Required method
    fn mirroring(&self, ch: char) -> char;
}
Expand description

An object to map from code points to mirrored code points.

Required Methods§

Source

fn mirroring(&self, ch: char) -> char

Given a code point, return the mirrored code point.

Implementors§