pub struct Grammar {
pub pos_list: Vec<POS>,
pub connection: ConnectionMatrix,
pub bos_parameter: WordParameter,
pub eos_parameter: WordParameter,
}Expand description
Grammar: POS inventory + connection costs.
Fields§
§pos_list: Vec<POS>§connection: ConnectionMatrix§bos_parameter: WordParameter§eos_parameter: WordParameterTrait Implementations§
Auto Trait Implementations§
impl Freeze for Grammar
impl RefUnwindSafe for Grammar
impl Send for Grammar
impl Sync for Grammar
impl Unpin for Grammar
impl UnsafeUnpin for Grammar
impl UnwindSafe for Grammar
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