pub struct FeatureCache { /* private fields */ }Expand description
Feature 문자열 중복 제거 캐시
Feature 문자열은 품사 태그보다 다양하지만, 동일 품사의 엔트리들은 비슷한 feature를 공유합니다.
Implementations§
Trait Implementations§
Source§impl Debug for FeatureCache
impl Debug for FeatureCache
Auto Trait Implementations§
impl !Freeze for FeatureCache
impl !RefUnwindSafe for FeatureCache
impl Send for FeatureCache
impl Sync for FeatureCache
impl Unpin for FeatureCache
impl UnsafeUnpin for FeatureCache
impl UnwindSafe for FeatureCache
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> 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