pub struct Dictionary {
pub prefix_dictionary: PrefixDictionary,
pub connection_cost_matrix: ConnectionCostMatrix,
pub character_definition: CharacterDefinition,
pub unknown_dictionary: UnknownDictionary,
}Fields§
§prefix_dictionary: PrefixDictionary§connection_cost_matrix: ConnectionCostMatrix§character_definition: CharacterDefinition§unknown_dictionary: UnknownDictionaryImplementations§
Source§impl Dictionary
impl Dictionary
pub fn word_details(&self, word_id: usize) -> Vec<&str>
Trait Implementations§
Source§impl Clone for Dictionary
impl Clone for Dictionary
Source§fn clone(&self) -> Dictionary
fn clone(&self) -> Dictionary
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for Dictionary
impl RefUnwindSafe for Dictionary
impl Send for Dictionary
impl Sync for Dictionary
impl Unpin for Dictionary
impl UnwindSafe for Dictionary
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