pub struct DictionaryStats {
pub entry_count: usize,
pub unique_surfaces: usize,
pub pos_distribution: HashMap<String, usize>,
pub average_cost: f64,
}Expand description
사전 통계
Fields§
§entry_count: usize전체 엔트리 수
unique_surfaces: usize고유 표면형 수
pos_distribution: HashMap<String, usize>품사별 분포
average_cost: f64평균 비용
Trait Implementations§
Source§impl Clone for DictionaryStats
impl Clone for DictionaryStats
Source§fn clone(&self) -> DictionaryStats
fn clone(&self) -> DictionaryStats
Returns a duplicate 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 moreSource§impl Debug for DictionaryStats
impl Debug for DictionaryStats
Auto Trait Implementations§
impl Freeze for DictionaryStats
impl RefUnwindSafe for DictionaryStats
impl Send for DictionaryStats
impl Sync for DictionaryStats
impl Unpin for DictionaryStats
impl UnsafeUnpin for DictionaryStats
impl UnwindSafe for DictionaryStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more