pub struct CharTable {
pub default_id: CategoryId,
pub categories: Vec<Category>,
pub table: [CategoryId; 65535],
}Fields§
§default_id: CategoryId§categories: Vec<Category>§table: [CategoryId; 65535]Implementations§
Trait Implementations§
Source§impl CharCategorize for CharTable
impl CharCategorize for CharTable
fn categorize(&self, ch: char) -> Category
fn category_id(&self, ch: char) -> CategoryId
Auto Trait Implementations§
impl Freeze for CharTable
impl RefUnwindSafe for CharTable
impl Send for CharTable
impl Sync for CharTable
impl Unpin for CharTable
impl UnwindSafe for CharTable
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