summaryrefslogtreecommitdiffstats
path: root/openpgp/src/serialize/stream.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-04-03 12:07:31 +0200
committerJustus Winter <justus@sequoia-pgp.org>2020-04-03 13:46:23 +0200
commit3537bf41630139cb4cd44a8b13a21e7cce27211e (patch)
tree62d134a854a73bb8cba08f915d5d8a8e2f3863ac /openpgp/src/serialize/stream.rs
parent5dcd7da9f497f53a8271f2dbd923b52f230cec31 (diff)
openpgp: Rename.
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)]