pub struct BtrBlocksCompressedStrategy { /* private fields */ }Expand description
A layout writer that compresses chunks using a sampling compressor.
Implementations§
Source§impl BtrBlocksCompressedStrategy
impl BtrBlocksCompressedStrategy
pub fn new( child: ArcRef<dyn LayoutStrategy>, executor: Arc<dyn TaskExecutor>, parallelism: usize, ) -> Self
Trait Implementations§
Source§impl LayoutStrategy for BtrBlocksCompressedStrategy
impl LayoutStrategy for BtrBlocksCompressedStrategy
fn write_stream( &self, ctx: &ArrayContext, sequence_writer: SequenceWriter, stream: SendableSequentialStream, ) -> SendableLayoutFuture
Auto Trait Implementations§
impl Freeze for BtrBlocksCompressedStrategy
impl !RefUnwindSafe for BtrBlocksCompressedStrategy
impl Send for BtrBlocksCompressedStrategy
impl Sync for BtrBlocksCompressedStrategy
impl Unpin for BtrBlocksCompressedStrategy
impl !UnwindSafe for BtrBlocksCompressedStrategy
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