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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
use mem;
use ;
use cratePacked;
/// Casts `T` into `U`
///
/// # Panics
///
/// This panics if `T` is not the same size as `U`
///
/// # Example
///
/// ```rust
/// use constmuck::cast;
///
/// const LE_BYTES: [u8; 4] = cast(0xAB1E_BEEF_u32.to_le());
///
/// assert_eq!(LE_BYTES, 0xAB1E_BEEF_u32.to_le_bytes());
///
/// ```
pub const
/// Tries to cast `T` into `U`
///
/// # Errors
///
/// This returns an `Err(PodCastError::SizeMismatch)` when `T` isn't the same size as `U`.
///
/// # Example
///
/// ```rust
/// use constmuck::PodCastError;
/// use constmuck::try_cast;
///
/// const OK: Result<i32, PodCastError> = try_cast(u32::MAX);
/// const ERR: Result<[u8; 4], PodCastError> = try_cast(100_u16);
///
/// assert_eq!(OK, Ok(-1));
/// assert_eq!(ERR, Err(PodCastError::SizeMismatch));
///
///
/// ```
pub const
/// Cast a `&T` to `&U`
///
/// # Panics
///
/// This function panics in these cases:
/// - The alignment of `T` is larger than `U`
/// - The size of `T` is not equal to `U`
///
/// # Difference with `bytemuck`
///
/// This function requires `T` to have an alignment larger than or equal to `U`.
/// [`bytemuck::cast_ref`] allows `T` to have to have a lower alignment than `U`,
/// so long as the `from` reference happens to be aligned to `U`.
///
/// # Example
///
/// ```
/// use constmuck::cast_ref_alt;
///
/// const U8: &[u8; 2] = cast_ref_alt(&100u16.to_le());
///
/// assert_eq!(U8[0], 100u8);
/// assert_eq!(U8[1], 0);
///
/// ```
pub const
/// Tries to cast `&T` to `&U`
///
/// # Errors
///
/// This function returns errors in these cases:
/// - The alignment of `T` is larger than `U`, returning a
/// `Err(PodCastError::TargetAlignmentGreaterAndInputNotAligned)`.
/// <br>(using this instead of `PodCastError::AlignmentMismatch` because that
/// is not returned by [`bytemuck::try_cast_ref`])
///
/// - The size of `T` is not equal to `U`, returning a
/// `Err(PodCastError::SizeMismatch)`.
///
/// # Difference with `bytemuck`
///
/// This function requires `T` to have an alignment larger than or equal to `U`.
/// [`bytemuck::try_cast_ref`] allows `T` to have a lower alignment than `U`,
/// so long as the `from` reference happens to be aligned to `U`.
///
/// # Example
///
/// ```
/// use constmuck::PodCastError;
/// use constmuck::try_cast_ref_alt;
///
/// const U8: Result<&[u8; 2], PodCastError> = try_cast_ref_alt(&100u16.to_le());
/// const ERR_SIZE : Result<&u8, PodCastError> = try_cast_ref_alt(&100u16.to_le());
/// const ERR_ALIGN: Result<&u16, PodCastError> = try_cast_ref_alt(&100u8);
///
/// assert_eq!(U8, Ok(&[100u8, 0]));
/// assert_eq!(ERR_SIZE, Err(PodCastError::SizeMismatch));
/// assert_eq!(ERR_ALIGN, Err(PodCastError::TargetAlignmentGreaterAndInputNotAligned));
///
/// ```
pub const
/// Reads a `T` out of a byte slice.
///
/// # Panics
///
/// This panics if `size_of::<T>() != bytes.len()`
///
/// # Example
///
/// ```rust
/// use constmuck::{pod_read_unaligned, AnyBitPattern};
///
/// #[repr(C)]
/// #[derive(Debug, PartialEq, Copy, Clone, AnyBitPattern)]
/// struct Foo(u16, u16);
///
/// const FOO: Foo = {
/// let number = u32::from_be_bytes([0xDe, 0x11, 0x0_B, 0x0b]);
/// pod_read_unaligned(&number.to_ne_bytes())
/// };
///
/// assert_eq!(FOO, Foo(0xB0b, 0xDe11));
///
/// ```
pub const
/// Reads a `T` out of a byte slice.
///
/// # Errors
///
/// This returns `Err(PodCastError::SizeMismatch)` if
/// `size_of::<T>() != bytes.len()`
///
// dunno what a good example for this would be
pub const