aboutsummaryrefslogtreecommitdiff
path: root/src/ser.rs
diff options
context:
space:
mode:
authorest31 <est31@users.noreply.github.com>2019-09-09 20:04:47 +0200
committerAlex Crichton <alex@alexcrichton.com>2019-09-09 13:04:47 -0500
commit029908cfa6507ca7db0f74fe46854cc0043fe806 (patch)
treed41c529dab34378db19f143bbae1bc6bf31692c9 /src/ser.rs
parent95d419ba990920dfdc30b7b88d6df1c0d2d5737f (diff)
downloadmilf-rs-029908cfa6507ca7db0f74fe46854cc0043fe806.tar.gz
milf-rs-029908cfa6507ca7db0f74fe46854cc0043fe806.zip
Remove redundant #[doc(hidden)] attributes (#331)
Diffstat (limited to 'src/ser.rs')
-rw-r--r--src/ser.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/ser.rs b/src/ser.rs
index 039c1f3..0734803 100644
--- a/src/ser.rs
+++ b/src/ser.rs
@@ -151,7 +151,6 @@ pub enum Error {
}
#[derive(Debug, Default, Clone)]
-#[doc(hidden)]
/// Internal place for holding array setings
struct ArraySettings {
indent: usize,
@@ -167,7 +166,6 @@ impl ArraySettings {
}
}
-#[doc(hidden)]
#[derive(Debug, Default, Clone)]
/// String settings
struct StringSettings {
@@ -182,7 +180,6 @@ impl StringSettings {
}
#[derive(Debug, Default, Clone)]
-#[doc(hidden)]
/// Internal struct for holding serialization settings
struct Settings {
array: Option<ArraySettings>,