Skip to content

Commit a50fb81

Browse files
committed
Change to pub(crate)
1 parent 67eca9c commit a50fb81

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ mod tile;
1515

1616
pub use cog::TIFF;
1717
pub use ifd::ImageFileDirectory;
18-
pub use tile::{PredictorInfo, Tile};
18+
pub use tile::Tile;

src/predictor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use bytes::{Bytes, BytesMut};
77
use crate::{error::AsyncTiffResult, reader::Endianness, tile::PredictorInfo};
88

99
/// Trait for reverse predictors to implement
10-
pub trait Unpredict: Debug + Send + Sync {
10+
pub(crate) trait Unpredict: Debug + Send + Sync {
1111
/// reverse predict the decompressed bytes and fix endianness on the output
1212
fn fix_endianness_and_unpredict(
1313
&self,

0 commit comments

Comments
 (0)