- do not try java things when building for docs.rs

This commit is contained in:
Wim Pomp
2025-02-03 16:22:49 +01:00
parent 1a8c3f22e5
commit 15eae99272
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View File

@@ -1,5 +1,5 @@
/target /target
Cargo.lock /Cargo.lock
# Byte-compiled / optimized / DLL files # Byte-compiled / optimized / DLL files
__pycache__/ __pycache__/

View File

@@ -42,7 +42,7 @@ impl TryFrom<i32> for PixelType {
} }
} }
/// Struct containing frame data in one of eight pixel types. Cast to Array2<T> using try_into. /// Struct containing frame data in one of eight pixel types. Cast to `Array2<T>` using try_into.
#[derive(Clone, Debug)] #[derive(Clone, Debug)]
pub enum Frame { pub enum Frame {
INT8(Array2<i8>), INT8(Array2<i8>),