Struct arrow_format::ipc::SparseMatrixIndexCsx
source · pub struct SparseMatrixIndexCsx {
pub compressed_axis: SparseMatrixCompressedAxis,
pub indptr_type: Box<Int>,
pub indptr_buffer: Buffer,
pub indices_type: Box<Int>,
pub indices_buffer: Buffer,
}
Available on crate feature
ipc
only.Fields§
§compressed_axis: SparseMatrixCompressedAxis
§indptr_type: Box<Int>
§indptr_buffer: Buffer
§indices_type: Box<Int>
§indices_buffer: Buffer
Implementations§
source§impl SparseMatrixIndexCsx
impl SparseMatrixIndexCsx
pub fn create(
builder: &mut Builder,
compressed_axis: impl WriteAsDefault<SparseMatrixCompressedAxis, SparseMatrixCompressedAxis>,
indptr_type: impl WriteAs<Offset<Int>>,
indptr_buffer: impl WriteAs<Buffer>,
indices_type: impl WriteAs<Offset<Int>>,
indices_buffer: impl WriteAs<Buffer>
) -> Offset<Self>
Trait Implementations§
source§impl Clone for SparseMatrixIndexCsx
impl Clone for SparseMatrixIndexCsx
source§fn clone(&self) -> SparseMatrixIndexCsx
fn clone(&self) -> SparseMatrixIndexCsx
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SparseMatrixIndexCsx
impl Debug for SparseMatrixIndexCsx
source§impl<'de> Deserialize<'de> for SparseMatrixIndexCsx
impl<'de> Deserialize<'de> for SparseMatrixIndexCsx
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<SparseMatrixIndexCsx> for SparseMatrixIndexCsx
impl PartialEq<SparseMatrixIndexCsx> for SparseMatrixIndexCsx
source§fn eq(&self, other: &SparseMatrixIndexCsx) -> bool
fn eq(&self, other: &SparseMatrixIndexCsx) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.