Docs.rs
  • numcodecs-0.1.1
    • numcodecs 0.1.1
    • Docs.rs crate page
    • MPL-2.0
    • Links
    • Repository
    • crates.io
    • Source
    • Owners
    • juntyr
    • Dependencies
      • ndarray ^0.15 normal
      • schemars =1.0.0-alpha.9 normal
      • serde ^1.0 normal
      • serde_json ^1.0 normal
      • thiserror ^1.0 normal
    • Versions
    • 100% of the crate is documented
  • Go to latest version
  • Platform
    • i686-pc-windows-msvc
    • i686-unknown-linux-gnu
    • x86_64-apple-darwin
    • x86_64-pc-windows-msvc
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Badges
    • Builds
    • Metadata
    • Shorthand URLs
    • Download
    • Rustdoc JSON
    • Build queue
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation

numcodecs0.1.1

AnyArcArray

Aliased type

Variants

  • F32
  • F64
  • I16
  • I32
  • I64
  • I8
  • U16
  • U32
  • U64
  • U8

In crate numcodecs

Type Alias numcodecs::AnyArcArray

source ·
pub type AnyArcArray = AnyArrayBase<OwnedArcRepr<()>>;
Expand description

An array where the data has shared ownership and is copy-on-write.

Aliased Type§

enum AnyArcArray {
    U8(ArrayBase<OwnedArcRepr<u8>, Dim<IxDynImpl>>),
    U16(ArrayBase<OwnedArcRepr<u16>, Dim<IxDynImpl>>),
    U32(ArrayBase<OwnedArcRepr<u32>, Dim<IxDynImpl>>),
    U64(ArrayBase<OwnedArcRepr<u64>, Dim<IxDynImpl>>),
    I8(ArrayBase<OwnedArcRepr<i8>, Dim<IxDynImpl>>),
    I16(ArrayBase<OwnedArcRepr<i16>, Dim<IxDynImpl>>),
    I32(ArrayBase<OwnedArcRepr<i32>, Dim<IxDynImpl>>),
    I64(ArrayBase<OwnedArcRepr<i64>, Dim<IxDynImpl>>),
    F32(ArrayBase<OwnedArcRepr<f32>, Dim<IxDynImpl>>),
    F64(ArrayBase<OwnedArcRepr<f64>, Dim<IxDynImpl>>),
}

Variants§

§

U8(ArrayBase<OwnedArcRepr<u8>, Dim<IxDynImpl>>)

§

U16(ArrayBase<OwnedArcRepr<u16>, Dim<IxDynImpl>>)

§

U32(ArrayBase<OwnedArcRepr<u32>, Dim<IxDynImpl>>)

§

U64(ArrayBase<OwnedArcRepr<u64>, Dim<IxDynImpl>>)

§

I8(ArrayBase<OwnedArcRepr<i8>, Dim<IxDynImpl>>)

§

I16(ArrayBase<OwnedArcRepr<i16>, Dim<IxDynImpl>>)

§

I32(ArrayBase<OwnedArcRepr<i32>, Dim<IxDynImpl>>)

§

I64(ArrayBase<OwnedArcRepr<i64>, Dim<IxDynImpl>>)

§

F32(ArrayBase<OwnedArcRepr<f32>, Dim<IxDynImpl>>)

§

F64(ArrayBase<OwnedArcRepr<f64>, Dim<IxDynImpl>>)