We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcde1d5 commit f9da0fcCopy full SHA for f9da0fc
src/internals.rs
@@ -26,9 +26,13 @@ unsafe impl UnsafeAnyExt for DebugAny + Send + Sync {}
26
///
27
/// There is also an exported alias for this type of `TypeMap`, `CloneAny`.
28
pub trait CloneAny: Any {
29
+ #[doc(hidden)]
30
fn clone_any(&self) -> Box<CloneAny>;
31
32
fn clone_any_send(&self) -> Box<CloneAny + Send> where Self: Send;
33
34
fn clone_any_sync(&self) -> Box<CloneAny + Sync> where Self: Sync;
35
36
fn clone_any_send_sync(&self) -> Box<CloneAny + Send + Sync> where Self: Send + Sync;
37
}
38
0 commit comments