summaryrefslogtreecommitdiffstats
path: root/openpgp
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-09-17 14:20:24 +0200
committerJustus Winter <justus@sequoia-pgp.org>2019-09-17 14:20:24 +0200
commit28f91302cc2ba9efe9bf3bf66c6817804a8d79d0 (patch)
treea4b266bb46fa69e742d28fb591dfd48acd0f3d56 /openpgp
parente4220d83a084dd05381b3afeb90200e0e50e3204 (diff)
openpgp: Make packet::Container pub(crate).
Diffstat (limited to 'openpgp')
-rw-r--r--openpgp/src/packet/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/packet/mod.rs b/openpgp/src/packet/mod.rs
index a3f81168..078d46db 100644
--- a/openpgp/src/packet/mod.rs
+++ b/openpgp/src/packet/mod.rs
@@ -257,7 +257,7 @@ impl Common {
/// This is used by OpenPGP container packets, like the compressed
/// data packet, to store the containing packets.
#[derive(PartialEq, Eq, Hash, Clone)]
-pub struct Container {
+pub(crate) struct Container {
pub(crate) packets: Vec<Packet>,
}