pub struct NormTable {
pub entries: Vec<(char, char)>,
}Expand description
A simple normalization table for character replacements.
Fields§
§entries: Vec<(char, char)>Entries mapping from to char
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NormTable
impl RefUnwindSafe for NormTable
impl Send for NormTable
impl Sync for NormTable
impl Unpin for NormTable
impl UnsafeUnpin for NormTable
impl UnwindSafe for NormTable
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more