aboutsummaryrefslogtreecommitdiff
path: root/matroska/src/lib.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-01-28 23:41:32 +0100
committermetamuffin <metamuffin@disroot.org>2024-01-28 23:41:32 +0100
commitab0e2e306b7872d1c1e6494994070f52fe1b3c00 (patch)
tree859228b2cad149bc4cb4a76299ec29cd36ac28d0 /matroska/src/lib.rs
parent1b8181e34fbbc6a6dfb89afa704e1e1d8fe7ff68 (diff)
downloadjellything-ab0e2e306b7872d1c1e6494994070f52fe1b3c00.tar
jellything-ab0e2e306b7872d1c1e6494994070f52fe1b3c00.tar.bz2
jellything-ab0e2e306b7872d1c1e6494994070f52fe1b3c00.tar.zst
direct io for blocks
Diffstat (limited to 'matroska/src/lib.rs')
-rw-r--r--matroska/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/matroska/src/lib.rs b/matroska/src/lib.rs
index 09635d4..7e4121b 100644
--- a/matroska/src/lib.rs
+++ b/matroska/src/lib.rs
@@ -22,5 +22,6 @@ pub enum Master {
End,
}
+pub(crate) use block::Block;
pub(crate) use error::Error;
pub(crate) type Result<T> = core::result::Result<T, Error>;