pub struct LexiconEntry {
pub word: String,
pub frequency: u32,
}Fields§
§word: String§frequency: u32Implementations§
Trait Implementations§
Source§impl Clone for LexiconEntry
impl Clone for LexiconEntry
Source§fn clone(&self) -> LexiconEntry
fn clone(&self) -> LexiconEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LexiconEntry
impl Debug for LexiconEntry
impl Eq for LexiconEntry
Source§impl PartialEq for LexiconEntry
impl PartialEq for LexiconEntry
impl StructuralPartialEq for LexiconEntry
Auto Trait Implementations§
impl Freeze for LexiconEntry
impl RefUnwindSafe for LexiconEntry
impl Send for LexiconEntry
impl Sync for LexiconEntry
impl Unpin for LexiconEntry
impl UnsafeUnpin for LexiconEntry
impl UnwindSafe for LexiconEntry
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