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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
//! # Compile-Time Trait Detection
//!
//! This module provides low-level trait detection utilities.
//!
//! ## User API
//!
//! For most use cases, prefer the `caps_check!` macro which supports
//! boolean expressions like `Clone & !Copy`:
//!
//! ```ignore
//! use tola_caps::caps_check;
//!
//! assert!(caps_check!(String: Clone));
//! assert!(caps_check!(String: Clone & !Copy));
//! ```
//!
//! ## Low-level: `has_impl!`
//!
//! For detecting arbitrary traits on concrete types:
//!
//! ```
//! use tola_caps::has_impl;
//!
//! trait MyTrait {}
//! impl MyTrait for i32 {}
//!
//! assert!(has_impl!(i32, MyTrait));
//! assert!(!has_impl!(String, MyTrait));
//! ```
// =============================================================================
// has_impl! - Low-level trait detection (concrete types only)
// =============================================================================
/// Check if a concrete type implements a trait at compile time.
///
/// Uses the "Inherent Const Fallback" pattern: an inherent const shadows
/// a trait const when the bound is satisfied.
///
/// **Note**: Only works for concrete types. For generic contexts, use
/// `caps_check!` with standard traits (Clone, Copy, Debug, Default, Send, Sync).
///
/// # Usage
///
/// ```
/// use tola_caps::has_impl;
///
/// assert!(has_impl!(String, Clone));
/// assert!(!has_impl!(String, Copy));
///
/// trait MyTrait {}
/// impl MyTrait for i32 {}
/// assert!(has_impl!(i32, MyTrait));
/// ```
// =============================================================================
// define_trait_cap! - Register a user trait into the caps system
// =============================================================================
/// Define a capability marker for a user trait.
///
/// This macro generates a capability marker struct `Is<Trait>` with
/// `#[derive(Capability)]` for integration with the type-level capability system.
///
/// # Usage
///
/// ```ignore
/// trait Serialize { fn serialize(&self) -> Vec<u8>; }
///
/// define_trait_cap!(Serialize);
///
/// // Now IsSerialize can be used in capability sets
/// ```
// =============================================================================
// Tests
// =============================================================================