summaryrefslogtreecommitdiffstats
path: root/openpgp/src/serialize/stream.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/serialize/stream.rs')
-rw-r--r--openpgp/src/serialize/stream.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/openpgp/src/serialize/stream.rs b/openpgp/src/serialize/stream.rs
index 3c810a14..2316ec43 100644
--- a/openpgp/src/serialize/stream.rs
+++ b/openpgp/src/serialize/stream.rs
@@ -33,7 +33,6 @@ use crate::{
use crate::packet::header::CTB;
use crate::packet::header::BodyLength;
use super::{
- PartialBodyFilter,
Marshal,
};
use crate::types::{
@@ -47,6 +46,8 @@ use crate::types::{
pub mod writer;
#[cfg(feature = "compression-deflate")]
pub mod padding;
+mod partial_body;
+use partial_body::PartialBodyFilter;
/// Cookie must be public because the writers are.
#[doc(hidden)]