Struct sst::Sst

source ·
pub struct Sst { /* private fields */ }
Expand description

An Sst represents an immutable sorted string table.

Implementations§

source§

impl Sst

source

pub fn new<P: AsRef<Path>>(_options: SstOptions, path: P) -> Result<Self, Error>

Open the provided path using options.

source

pub fn from_file_handle(handle: FileHandle) -> Result<Self, Error>

Create an Sst from a file handle.

source

pub fn approximate_size(&self) -> usize

Approximate size of the sst’s memory footprint.

source

pub fn cursor(&self) -> SstCursor

Get a new cursor for the Sst.

source

pub fn metadata(&self) -> Result<SstMetadata, Error>

Get the Sst’s metadata. This will involve reading the first and last keys from disk.

source

pub fn fast_setsum(&self) -> Setsum

Return the setsum stored in the final block of the sst.

source

pub fn inspect(&self) -> Result<(), Error>

Inspect the sst by printing its internal structure.

source

pub fn load( &self, key: &[u8], timestamp: u64, is_tombstone: &mut bool ) -> Result<Option<Vec<u8>>, Error>

source

pub fn range_scan<T: AsRef<[u8]>>( &self, start_bound: &Bound<T>, end_bound: &Bound<T>, timestamp: u64 ) -> Result<BoundsCursor<PruningCursor<SstCursor, Error>, Error>, Error>

Trait Implementations§

source§

impl Clone for Sst

source§

fn clone(&self) -> Sst

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Sst

source§

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

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

impl From<Sst> for SstCursor

source§

fn from(table: Sst) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl RefUnwindSafe for Sst

§

impl Send for Sst

§

impl Sync for Sst

§

impl Unpin for Sst

§

impl UnwindSafe for Sst

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> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.