pub struct State {
pub transitions: [u32; 128],
pub comp_offset: u32,
pub comp_len: u8,
}Expand description
A DFA state representing a unique syllable composition.
Fields§
§transitions: [u32; 128]State transition table for 128 ASCII characters.
comp_offset: u32Start index in the DFA arena.
comp_len: u8Number of transformations in this state.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for State
impl RefUnwindSafe for State
impl Send for State
impl Sync for State
impl Unpin for State
impl UnsafeUnpin for State
impl UnwindSafe for State
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