Skip to content

Commit f9da0fc

Browse files
committed
(chore) Add some doc(hidden) attributes.
1 parent fcde1d5 commit f9da0fc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/internals.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,13 @@ unsafe impl UnsafeAnyExt for DebugAny + Send + Sync {}
2626
///
2727
/// There is also an exported alias for this type of `TypeMap`, `CloneAny`.
2828
pub trait CloneAny: Any {
29+
#[doc(hidden)]
2930
fn clone_any(&self) -> Box<CloneAny>;
31+
#[doc(hidden)]
3032
fn clone_any_send(&self) -> Box<CloneAny + Send> where Self: Send;
33+
#[doc(hidden)]
3134
fn clone_any_sync(&self) -> Box<CloneAny + Sync> where Self: Sync;
35+
#[doc(hidden)]
3236
fn clone_any_send_sync(&self) -> Box<CloneAny + Send + Sync> where Self: Send + Sync;
3337
}
3438

0 commit comments

Comments
 (0)