pub struct SegmentWriter<C: Compressor + Clone> { /* private fields */ }Expand description
Segment writer, may write multiple segments
Implementations§
Source§impl<C: Compressor + Clone> MultiWriter<C>
impl<C: Compressor + Clone> MultiWriter<C>
Sourcepub fn get_next_value_handle(&self) -> ValueHandle
pub fn get_next_value_handle(&self) -> ValueHandle
Returns the ValueHandle for the next written blob.
This can be used to index an item into an external Index.
Auto Trait Implementations§
impl<C> Freeze for MultiWriter<C>where
C: Freeze,
impl<C> RefUnwindSafe for MultiWriter<C>where
C: RefUnwindSafe,
impl<C> Send for MultiWriter<C>where
C: Send,
impl<C> Sync for MultiWriter<C>where
C: Sync,
impl<C> Unpin for MultiWriter<C>where
C: Unpin,
impl<C> UnwindSafe for MultiWriter<C>where
C: UnwindSafe,
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