Skip to main content

BinTable

Struct BinTable 

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

The decoded contents of a binary table extension.

Implementations§

Source§

impl BinTable

Source

pub fn push_row( &mut self, values: &[Value], ) -> Result<(), Box<dyn Error + Send + Sync>>

Appends a row, one value per column.

This is how to build a table without going through serde — for a complex column, say, which no Rust type maps onto on its own.

§Errors

Returns an error when values is not one per column: a short row would leave the columns after it holding whatever the padding happened to be.

Source

pub fn new(field_definitions: Vec<FieldDefinition>) -> Self

An empty table with the given columns.

Source

pub fn field_definitions(&self) -> &[FieldDefinition]

The columns this table is made of.

Source

pub fn bytes_per_row(&self) -> usize

The width of one row in bytes, as NAXIS1 gives it.

Source

pub fn from_u8( header: &Header, data: Vec<u8>, ) -> Result<Self, Box<dyn Error + Send + Sync>>

Reads a table out of a header and its data section.

Source

pub fn row(&self, row: usize) -> Option<Row<'_>>

The row at row, or None past the end of the table.

Source

pub fn data(&self) -> &[u8]

The whole data section: the rows, and then the heap.

Source

pub fn heap_len(&self) -> usize

The size of the heap, which is what a table’s PCOUNT card records.

Source

pub fn heap(&self) -> &[u8]

The table’s heap: the values that variable length array columns point at.

Empty for a table without such columns, which is most of them.

Source

pub fn rows(&self) -> impl Iterator<Item = Row<'_>> + '_

Every row of the table, in order.

Source

pub fn rows_parallel(&self) -> impl ParallelIterator<Item = Row<'_>> + '_

Available on crate feature rayon only.

Every row of the table, decoded in parallel.

Source

pub fn len(&self) -> usize

The number of rows in this table.

Source

pub fn is_empty(&self) -> bool

Whether the table has no rows at all.

Trait Implementations§

Source§

impl Clone for BinTable

Source§

fn clone(&self) -> BinTable

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 BinTable

Source§

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

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

impl Default for BinTable

Source§

fn default() -> BinTable

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

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

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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, <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.