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,
}
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 for SparseMatrixIndexCsx
impl PartialEq 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 ==
.source§impl Serialize for SparseMatrixIndexCsx
impl Serialize for SparseMatrixIndexCsx
source§impl<'a> TryFrom<SparseMatrixIndexCsxRef<'a>> for SparseMatrixIndexCsx
impl<'a> TryFrom<SparseMatrixIndexCsxRef<'a>> for SparseMatrixIndexCsx
impl StructuralPartialEq for SparseMatrixIndexCsx
impl VectorWrite<Offset<SparseMatrixIndexCsx>> for SparseMatrixIndexCsx
impl WriteAs<Offset<SparseMatrixIndexCsx>> for SparseMatrixIndexCsx
impl WriteAsOffset<SparseMatrixIndexCsx> for SparseMatrixIndexCsx
impl WriteAsOptional<Offset<SparseMatrixIndexCsx>> for SparseMatrixIndexCsx
Auto Trait Implementations§
impl Freeze for SparseMatrixIndexCsx
impl RefUnwindSafe for SparseMatrixIndexCsx
impl Send for SparseMatrixIndexCsx
impl Sync for SparseMatrixIndexCsx
impl Unpin for SparseMatrixIndexCsx
impl UnwindSafe for SparseMatrixIndexCsx
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more