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 67eca9c commit a50fb81Copy full SHA for a50fb81
src/lib.rs
@@ -15,4 +15,4 @@ mod tile;
15
16
pub use cog::TIFF;
17
pub use ifd::ImageFileDirectory;
18
-pub use tile::{PredictorInfo, Tile};
+pub use tile::Tile;
src/predictor.rs
@@ -7,7 +7,7 @@ use bytes::{Bytes, BytesMut};
7
use crate::{error::AsyncTiffResult, reader::Endianness, tile::PredictorInfo};
8
9
/// Trait for reverse predictors to implement
10
-pub trait Unpredict: Debug + Send + Sync {
+pub(crate) trait Unpredict: Debug + Send + Sync {
11
/// reverse predict the decompressed bytes and fix endianness on the output
12
fn fix_endianness_and_unpredict(
13
&self,
0 commit comments