1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/// Test if an item implements `Sync` trait.
///
/// ### Examples
///
/// - Sync item:
///
/// ```
/// // either "test" or "all" features must be enabled
/// #[cfg(any(feature = "test", feature = "all"))]
/// {
/// use cs_utils::test::implements_sync;
///
/// // Sync is auto implemented
/// struct TestStruct {}
///
/// // compiles fine
/// implements_sync(TestStruct {});
/// }
/// ```
///
/// - Non-Sync item:
///
/// ```compile_fail
/// // either "test" or "all" features must be enabled
/// #[cfg(any(feature = "test", feature = "all"))]
/// {
/// use cs_utils::test::implements_sync;
///
/// struct TestStruct {
/// // make it not Sync
/// rc: std::rc::Rc<u8>,
/// }
///
/// // does not compile
/// implements_sync(TestStruct {});
/// }
/// ```