1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/// Unique identifier for the `blosc` codec (registered, core).
pub const BLOSC: &str = "blosc";
/// Unique identifier for the `bytes` codec (registered, core).
pub const BYTES: &str = "bytes";
/// Unique identifier for the `crc32c` codec (registered, ZEP0002).
pub const CRC32C: &str = "crc32c";
/// Unique identifier for the `gzip` codec (registered, core).
pub const GZIP: &str = "gzip";
/// Unique identifier for the `packbits` codec (registered).
pub const PACKBITS: &str = "packbits";
/// Unique identifier for the `sharding_indexed` codec (registered, ZEP0002).
pub const SHARDING: &str = "sharding_indexed";
/// Unique identifier for the `transpose` codec (registered, core).
pub const TRANSPOSE: &str = "transpose";
/// Unique identifier for the `vlen-bytes` codec (registered).
pub const VLEN_BYTES: &str = "vlen-bytes";
/// Unique identifier for the `vlen-utf8` codec (registered).
pub const VLEN_UTF8: &str = "vlen-utf8";
/// Unique identifier for the `zfp` codec (registered).
pub const ZFP: &str = "zfp";
/// Unique identifier for the `zstd` codec (registered).
pub const ZSTD: &str = "zstd";
/// Unique identifier for the `gdeflate` codec (`zarrs` experimental).
pub const GDEFLATE: &str = "gdeflate";
/// Unique identifier for the `squeeze` codec (`zarrs` experimental).
pub const SQUEEZE: &str = "squeeze";
/// Unique identifier for the `vlen_v2` codec (`zarrs` experimental).
pub const VLEN_V2: &str = "vlen_v2";
/// Unique identifier for the `vlen` codec (`zarrs` experimental).
pub const VLEN: &str = "vlen";
/// Unique identifier for the `bitround` codec (`numcodecs`).
pub const BITROUND: &str = "bitround";
/// Unique identifier for the `bz2` codec (`numcodecs`).
pub const BZ2: &str = "bz2";
/// Unique identifier for the `fixedscaleoffset` codec (`numcodecs`).
pub const FIXEDSCALEOFFSET: &str = "fixedscaleoffset";
/// Unique identifier for the `fletcher32` codec (`numcodecs`).
pub const FLETCHER32: &str = "fletcher32";
/// Unique identifier for the `pcodec` codec (`numcodecs`).
pub const PCODEC: &str = "pcodec";
/// Unique identifier for the `shuffle` codec (`numcodecs`).
pub const SHUFFLE: &str = "shuffle";
/// Unique identifier for the `vlen-array` codec (`numcodecs`).
pub const VLEN_ARRAY: &str = "vlen-array";
/// Unique identifier for the `zfpy` codec (`numcodecs`).
pub const ZFPY: &str = "zfpy";
/// Unique identifier for the `zlib` codec (`numcodecs`).
pub const ZLIB: &str = "zlib";