Hide SizeHint and Context from docs

This commit is contained in:
Kogia-sima 2020-07-10 08:50:32 +09:00
parent 6c21955189
commit 28baf202c2
2 changed files with 2 additions and 1 deletions

View File

@ -65,6 +65,7 @@ impl From<fmt::Error> for RenderError {
pub type RenderResult = Result<String, RenderError>;
#[doc(hidden)]
pub struct Context {
#[doc(hidden)]
pub buf: Buffer,

View File

@ -1,7 +1,7 @@
use std::sync::atomic::{AtomicUsize, Ordering};
/// Dynamically updated size hint
#[derive(Debug, Default)]
#[doc(hidden)]
pub struct SizeHint {
value: AtomicUsize,
}