pub struct DictionaryLoader { /* private fields */ }Expand description
사전 로더 빌더
Implementations§
Source§impl DictionaryLoader
impl DictionaryLoader
Sourcepub fn new<P>(path: P) -> DictionaryLoader
pub fn new<P>(path: P) -> DictionaryLoader
새 로더 생성
Sourcepub const fn use_mmap(self, use_mmap: bool) -> DictionaryLoader
pub const fn use_mmap(self, use_mmap: bool) -> DictionaryLoader
메모리 맵 사용 설정
Sourcepub const fn auto_decompress(self, auto: bool) -> DictionaryLoader
pub const fn auto_decompress(self, auto: bool) -> DictionaryLoader
자동 압축 해제 설정
Sourcepub const fn lazy_load(self, lazy: bool) -> DictionaryLoader
pub const fn lazy_load(self, lazy: bool) -> DictionaryLoader
지연 로딩 설정
Auto Trait Implementations§
impl Freeze for DictionaryLoader
impl RefUnwindSafe for DictionaryLoader
impl Send for DictionaryLoader
impl Sync for DictionaryLoader
impl Unpin for DictionaryLoader
impl UnsafeUnpin for DictionaryLoader
impl UnwindSafe for DictionaryLoader
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