pub struct ParallelStreamProcessor { /* private fields */ }Expand description
병렬 스트리밍 프로세서
대용량 파일을 청크로 나누어 병렬 처리합니다.
Implementations§
Source§impl ParallelStreamProcessor
impl ParallelStreamProcessor
Sourcepub const DEFAULT_CHUNK_SIZE: usize = 16384
pub const DEFAULT_CHUNK_SIZE: usize = 16384
기본 청크 크기 (16KB)
Sourcepub const fn with_chunk_size(self, size: usize) -> Self
pub const fn with_chunk_size(self, size: usize) -> Self
청크 크기 설정
Auto Trait Implementations§
impl Freeze for ParallelStreamProcessor
impl RefUnwindSafe for ParallelStreamProcessor
impl Send for ParallelStreamProcessor
impl Sync for ParallelStreamProcessor
impl Unpin for ParallelStreamProcessor
impl UnsafeUnpin for ParallelStreamProcessor
impl UnwindSafe for ParallelStreamProcessor
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