Skip to main content

StringColumn

Struct StringColumn 

Source
pub struct StringColumn { /* private fields */ }
Expand description

A column of strings: the views, and the blocks the long ones live in.

Blocks are append only and never move, so an offset recorded in a view stays correct for the life of the column. Pushing a string longer than a block gives it a block of its own rather than splitting it, which keeps every string contiguous and keeps Self::get free of a stitching path that would be wrong more often than it ran.

Implementations§

Source§

impl StringColumn

Source

pub fn new() -> Self

An empty column.

Source

pub fn with_capacity(capacity: usize) -> Self

An empty column with room for capacity strings.

Source

pub fn len(&self) -> usize

How many strings are in the column.

Source

pub fn is_empty(&self) -> bool

Whether the column has no strings in it.

Source

pub fn views(&self) -> &[StringView]

The views, for a kernel that wants to compare prefixes without reading any payload.

Source

pub fn push(&mut self, text: &str) -> usize

Appends a string and returns its index.

Source

pub fn get(&self, index: usize) -> Option<&str>

The string at index, or None past the end.

Source

pub fn iter(&self) -> impl Iterator<Item = &str>

Every string in order.

Source

pub fn heap_bytes(&self) -> usize

Total bytes of payload held in blocks, which is what the memory accounting wants.

Trait Implementations§

Source§

impl Clone for StringColumn

Source§

fn clone(&self) -> StringColumn

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for StringColumn

Source§

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

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

impl Default for StringColumn

Source§

fn default() -> StringColumn

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

impl Eq for StringColumn

Source§

impl<'a> Extend<&'a str> for StringColumn

Source§

fn extend<T: IntoIterator<Item = &'a str>>(&mut self, iter: T)

Extends a collection with the contents of an iterator. Read more
Source§

fn extend_one(&mut self, item: T)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
Source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
Source§

impl<'a> FromIterator<&'a str> for StringColumn

Source§

fn from_iter<T: IntoIterator<Item = &'a str>>(iter: T) -> Self

Creates a value from an iterator. Read more
Source§

impl PartialEq for StringColumn

Source§

fn eq(&self, other: &StringColumn) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for StringColumn

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

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>,

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

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.