Skip to main content

Block

Struct Block 

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

A block is a collection of named columns with the same number of rows

Implementations§

Source§

impl Block

Source

pub fn new() -> Self

Create a new empty block

Source

pub fn with_capacity(cols: usize, rows: usize) -> Self

Create a block with reserved capacity

Source

pub fn append_column( &mut self, name: impl Into<String>, column: ColumnRef, ) -> Result<()>

Append a named column to the block

Source

pub fn column_count(&self) -> usize

Get the number of columns in the block

Source

pub fn row_count(&self) -> usize

Get the number of rows in the block

Source

pub fn column(&self, index: usize) -> Option<ColumnRef>

Get column by index

Source

pub fn column_mut(&mut self, index: usize) -> Option<&mut (dyn Column + '_)>

Get mutable access to column by index Returns None if index is out of bounds Panics if the column has multiple references

Source

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

Get column name by index

Source

pub fn column_by_name(&self, name: &str) -> Option<ColumnRef>

Get column by name

Source

pub fn column_by_name_mut( &mut self, name: &str, ) -> Option<&mut (dyn Column + '_)>

Get mutable access to column by name Returns None if column with given name is not found Panics if the column has multiple references

Source

pub fn info(&self) -> &BlockInfo

Get block info

Source

pub fn set_info(&mut self, info: BlockInfo)

Set block info

Source

pub fn clear(&mut self)

Clear all data from all columns

Source

pub fn reserve(&mut self, new_cap: usize)

Reserve capacity in all columns

Source

pub fn refresh_row_count(&mut self) -> Result<usize>

Refresh and validate row count

Source

pub fn iter(&self) -> BlockIterator<'_>

Iterate over columns

Source

pub fn is_empty(&self) -> bool

Check if block is empty

Trait Implementations§

Source§

impl Clone for Block

Source§

fn clone(&self) -> Block

Returns a duplicate 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 Default for Block

Source§

fn default() -> Self

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

impl<'a> IntoIterator for &'a Block

Source§

type Item = (&'a str, &'a Type, Arc<dyn Column>)

The type of the elements being iterated over.
Source§

type IntoIter = BlockIterator<'a>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl Freeze for Block

§

impl !RefUnwindSafe for Block

§

impl Send for Block

§

impl Sync for Block

§

impl Unpin for Block

§

impl !UnwindSafe for Block

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

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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 = 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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more