pub struct MmapVecBuilder<T, SB: SegmentBuilder = DefaultSegmentBuilder> { /* private fields */ }
Expand description

Helps to create vec with custom parameters.

Example usage:

let seg_builder = DefaultSegmentBuilder::with_path("/tmp/rust-mmap");
seg_builder.create_dir_all().expect("Fail to create mmap dir");

let vec = MmapVecBuilder::<usize>::new()
    .capacity(500)
    .segment_builder(seg_builder.clone())
    .try_build()
    .expect("Fail to create mmap vec");

Implementations§

source§

impl<T, SB: SegmentBuilder> MmapVecBuilder<T, SB>

source

pub fn new() -> Self

Create new struct.

source

pub fn segment_builder(self, segment_builder: SB) -> Self

Update segment builder.

source

pub fn capacity(self, capacity: usize) -> Self

Update capacity.

source

pub fn try_build(self) -> Result<MmapVec<T, SB>>

Try building a new vec with given parameter.

This function may failed if segment creation failed.

Trait Implementations§

source§

impl<T: Debug, SB: Debug + SegmentBuilder> Debug for MmapVecBuilder<T, SB>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, SB: SegmentBuilder> Default for MmapVecBuilder<T, SB>

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<T, SB> RefUnwindSafe for MmapVecBuilder<T, SB>where SB: RefUnwindSafe, T: RefUnwindSafe,

§

impl<T, SB> Send for MmapVecBuilder<T, SB>where SB: Send, T: Send,

§

impl<T, SB> Sync for MmapVecBuilder<T, SB>where SB: Sync, T: Sync,

§

impl<T, SB> Unpin for MmapVecBuilder<T, SB>where SB: Unpin, T: Unpin,

§

impl<T, SB> UnwindSafe for MmapVecBuilder<T, SB>where SB: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.