pub struct SpacePositions { /* private fields */ }Expand description
띄어쓰기 위치 정보
Stores positions as a sorted Vec rather than a HashSet. For typical
sentences the number of spaces is small, so binary search in a sorted Vec
is cheaper than hashing and avoids HashMap overhead.
Implementations§
Trait Implementations§
Source§impl Clone for SpacePositions
impl Clone for SpacePositions
Source§fn clone(&self) -> SpacePositions
fn clone(&self) -> SpacePositions
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 SpacePositions
impl Debug for SpacePositions
Source§impl Default for SpacePositions
impl Default for SpacePositions
Source§fn default() -> SpacePositions
fn default() -> SpacePositions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SpacePositions
impl RefUnwindSafe for SpacePositions
impl Send for SpacePositions
impl Sync for SpacePositions
impl Unpin for SpacePositions
impl UnsafeUnpin for SpacePositions
impl UnwindSafe for SpacePositions
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