Struct MmapVecBuilder

Source
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, 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> Freeze for MmapVecBuilder<T, SB>
where SB: Freeze,

§

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

§

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 T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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.