pub struct MulWriter<T: Write + Seek> { /* private fields */ }Expand description
Write new records onto existing Mul and Idx files
Implementations§
Source§impl MulWriter<File>
impl MulWriter<File>
Sourcepub fn new(
idx_path: &Path,
mul_path: &Path,
mode: MulWriterMode,
) -> MulWriterResult<MulWriter<File>>
pub fn new( idx_path: &Path, mul_path: &Path, mode: MulWriterMode, ) -> MulWriterResult<MulWriter<File>>
Create a new mul writer from an index and mul path
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for MulWriter<T>where
T: Freeze,
impl<T> RefUnwindSafe for MulWriter<T>where
T: RefUnwindSafe,
impl<T> Send for MulWriter<T>where
T: Send,
impl<T> Sync for MulWriter<T>where
T: Sync,
impl<T> Unpin for MulWriter<T>where
T: Unpin,
impl<T> UnsafeUnpin for MulWriter<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for MulWriter<T>where
T: 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