We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a78a87 commit 38c4282Copy full SHA for 38c4282
src/npyffi/types.rs
@@ -204,7 +204,7 @@ pub struct npy_stride_sort_item {
204
205
#[repr(u8)]
206
#[derive(Debug, Clone, Copy)]
207
-enum NPY_TYPECHAR {
+pub enum NPY_TYPECHAR {
208
NPY_BOOLLTR = b'?',
209
NPY_BYTELTR = b'b',
210
NPY_UBYTELTR = b'B',
@@ -239,7 +239,7 @@ enum NPY_TYPECHAR {
239
240
// NPY_TYPEKINDCHAR doesn't exist in the header, but these enum values are not
241
// related to NPY_TYPECHAR although being stuffed into it (type kinds, not type codes)
242
-enum NPY_TYPEKINDCHAR {
+pub enum NPY_TYPEKINDCHAR {
243
NPY_GENBOOLLTR = b'b',
244
NPY_SIGNEDLTR = b'i',
245
NPY_UNSIGNEDLTR = b'u',
0 commit comments