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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
//! Traits for casting between plain data types

// This is needed because one safety comment applies to multiple unsafe impls
#![allow(clippy::undocumented_unsafe_blocks)]

use std::marker::{PhantomData, PhantomPinned};
use std::mem::ManuallyDrop;
use std::num;

/// A marker trait for types for which any bit pattern is valid
///
/// This is modelled after the [`AnyBitPattern`](https://docs.rs/bytemuck/1/bytemuck/trait.AnyBitPattern.html) trait of
/// the [`bytemuck`](https://docs.rs/bytemuck/1/bytemuck) crate.
///
/// In order for reading a value of a type `T` from a WNF state to be sound, `T` is required to implement
/// [`AnyBitPattern`] (or at least [`CheckedBitPattern`], which is implied by [`AnyBitPattern`]).
///
/// # Implementation
/// This trait is already implemented by the `wnf` crate for many primitive types and types from the standard
/// library. There are several ways to implement it for your own types:
/// - Implement it directly, requiring `unsafe` code
/// - Derive the [`AnyBitPattern`](https://docs.rs/bytemuck/1/bytemuck/trait.AnyBitPattern.html) trait of the [`bytemuck`](https://docs.rs/bytemuck/1/bytemuck)
///   crate and derive this trait from it via the [`derive_from_bytemuck_v1`](crate::derive_from_bytemuck_v1) macro:
/// ```
/// # #[macro_use] extern crate wnf;
/// # extern crate bytemuck_v1 as bytemuck;
/// #
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// use wnf::{derive_from_bytemuck_v1, OwnedState};
///
/// #[derive(bytemuck::AnyBitPattern, bytemuck::NoUninit, Copy, Clone)]
/// #[repr(transparent)]
/// struct MyType(u32);
///
/// derive_from_bytemuck_v1!(AnyBitPattern for MyType);
/// derive_from_bytemuck_v1!(NoUninit for MyType);
///
/// let state: OwnedState<MyType> = OwnedState::create_temporary()?;
/// state.set(&MyType(42))?;
/// let data = state.get()?;
///
/// assert_eq!(data.0, 42);
/// # Ok (()) }
/// ```
/// - Derive the [`AsBytes`](https://docs.rs/zerocopy/0/zerocopy/trait.AsBytes.html) trait of the
/// [`zerocopy`](https://docs.rs/zerocopy/0/zerocopy) crate and derive this trait from it via the
/// [`derive_from_zerocopy`](crate::derive_from_zerocopy) macro:
/// ```
/// # #[macro_use] extern crate wnf;
/// #
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// use wnf::{derive_from_zerocopy, OwnedState};
///
/// #[derive(zerocopy::AsBytes, zerocopy::FromBytes, zerocopy::FromZeroes, Copy, Clone)]
/// #[repr(transparent)]
/// struct MyType(u32);
///
/// derive_from_zerocopy!(AnyBitPattern for MyType);
/// derive_from_zerocopy!(NoUninit for MyType);
///
/// let state: OwnedState<MyType> = OwnedState::create_temporary()?;
/// state.set(&MyType(42))?;
/// let data = state.get()?;
///
/// assert_eq!(data.0, 42);
/// # Ok(()) }
/// ```
///
/// # Safety
/// Implementing this trait for a type `T` is sound if any initialized sequence of bytes ("bit pattern") with the same
/// layout (i.e. size and alignment) as `T` is a valid `T`.
pub unsafe trait AnyBitPattern: Copy + Send + Sized + 'static {}

// SAFETY: Any bit pattern is valid for these primitive types
unsafe impl AnyBitPattern for () {}
unsafe impl AnyBitPattern for u8 {}
unsafe impl AnyBitPattern for i8 {}
unsafe impl AnyBitPattern for u16 {}
unsafe impl AnyBitPattern for i16 {}
unsafe impl AnyBitPattern for u32 {}
unsafe impl AnyBitPattern for i32 {}
unsafe impl AnyBitPattern for u64 {}
unsafe impl AnyBitPattern for i64 {}
unsafe impl AnyBitPattern for u128 {}
unsafe impl AnyBitPattern for i128 {}
unsafe impl AnyBitPattern for usize {}
unsafe impl AnyBitPattern for isize {}
unsafe impl AnyBitPattern for f32 {}
unsafe impl AnyBitPattern for f64 {}

// SAFETY:
// - `NonZero*` are `#[repr(transparent)]` wrappers around the corresponding primitive types
// - Niche optimization for `Option<NonZero*>` is guaranteed (see https://doc.rust-lang.org/std/option/#representation)
unsafe impl AnyBitPattern for Option<num::NonZeroU8> {}
unsafe impl AnyBitPattern for Option<num::NonZeroI8> {}
unsafe impl AnyBitPattern for Option<num::NonZeroU16> {}
unsafe impl AnyBitPattern for Option<num::NonZeroI16> {}
unsafe impl AnyBitPattern for Option<num::NonZeroU32> {}
unsafe impl AnyBitPattern for Option<num::NonZeroI32> {}
unsafe impl AnyBitPattern for Option<num::NonZeroU64> {}
unsafe impl AnyBitPattern for Option<num::NonZeroI64> {}
unsafe impl AnyBitPattern for Option<num::NonZeroU128> {}
unsafe impl AnyBitPattern for Option<num::NonZeroI128> {}
unsafe impl AnyBitPattern for Option<num::NonZeroUsize> {}
unsafe impl AnyBitPattern for Option<num::NonZeroIsize> {}

// SAFETY: `ManuallyDrop<T>` is a `#[repr(transparent)]` wrapper around `T`
unsafe impl<T> AnyBitPattern for ManuallyDrop<T> where T: AnyBitPattern {}

// SAFETY: `PhantomData<T>` is zero-sized
unsafe impl<T> AnyBitPattern for PhantomData<T> where T: Send + 'static + ?Sized {}

// SAFETY: `PhantomPinned` is zero-sized
unsafe impl AnyBitPattern for PhantomPinned {}

// SAFETY: `num::Wrapping<T>` is a `#[repr(transparent)]` wrapper around `T`
unsafe impl<T> AnyBitPattern for num::Wrapping<T> where T: AnyBitPattern {}

// SAFETY: Each array element is a valid `T`
unsafe impl<T, const N: usize> AnyBitPattern for [T; N] where T: AnyBitPattern {}

/// A trait for types that can be checked for valid bit patterns at runtime
///
/// This is modelled after the
/// [`CheckedBitPattern`](https://docs.rs/bytemuck/1/bytemuck/checked/trait.CheckedBitPattern.html) trait of the
/// [`bytemuck`](https://docs.rs/bytemuck/1/bytemuck) crate.
///
/// In order for reading a value of a type `T` from a WNF state to be sound, `T` is required to implement
/// [`CheckedBitPattern`] (or [`AnyBitPattern`], which imples [`CheckedBitPattern`]).
///
/// In case *any* bit pattern is valid for a type, implement the [`AnyBitPattern`] trait instead.
///
/// # Implementation
/// This trait is already implemented by the `wnf` crate for many primitive types and types from the standard
/// library. There are several ways to implement it for your own types:
/// - Implement it directly, requiring `unsafe` code
/// - Derive the [`CheckedBitPattern`](https://docs.rs/bytemuck/1/bytemuck/checked/trait.CheckedBitPattern.html) trait of
///   the [`bytemuck`](https://docs.rs/bytemuck/1/bytemuck) crate and derive this trait from it via the
///   [`derive_from_bytemuck_v1`](crate::derive_from_bytemuck_v1) macro:
/// ```
/// # #[macro_use] extern crate wnf;
/// # extern crate bytemuck_v1 as bytemuck;
/// #
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// use wnf::{derive_from_bytemuck_v1, OwnedState};
///
/// #[derive(bytemuck::CheckedBitPattern, bytemuck::NoUninit, Copy, Clone)]
/// #[repr(transparent)]
/// struct MyType(bool);
///
/// derive_from_bytemuck_v1!(CheckedBitPattern for MyType);
/// derive_from_bytemuck_v1!(NoUninit for MyType);
///
/// let state: OwnedState<MyType> = OwnedState::create_temporary()?;
/// state.set(&MyType(true))?;
/// let data = state.get()?;
///
/// assert!(data.0);
/// # Ok(()) }
/// ```
///
/// # Safety
/// Implementing this trait for a type `T` is sound if:
/// - `<T as CheckedBitPattern>::Bits` has the same memory layout (i.e. size and alignment) as `T`
/// - Any value `bits: <T as CheckedBitPattern>::Bits` for which `<T as CheckedBitPattern>::is_valid_bit_pattern(&bits)`
///   is `true` can be interpreted as a valid `T`
pub unsafe trait CheckedBitPattern: Copy + Send + Sized + 'static {
    /// The type of the underlying bit patterns that can be checked for validity
    type Bits: AnyBitPattern;

    /// Checks whether the given bit pattern can be interpreted as a valid `Self`
    fn is_valid_bit_pattern(bits: &Self::Bits) -> bool;
}

// SAFETY:
// - `<T as CheckedBitPattern>::Bits` trivially has the same memory layout as `T` because it *is* `T`
// - any value `bits: <T as CheckedBitPattern>::Bits` can trivially be interpreted as a valid `T` because it *is* a
//   valid `T`
unsafe impl<T> CheckedBitPattern for T
where
    T: AnyBitPattern,
{
    type Bits = T;

    #[inline]
    fn is_valid_bit_pattern(_bits: &T) -> bool {
        true
    }
}

// SAFETY: see `char::from_u32`
unsafe impl CheckedBitPattern for char {
    type Bits = u32;

    #[inline]
    fn is_valid_bit_pattern(bits: &u32) -> bool {
        char::from_u32(*bits).is_some()
    }
}

// SAFETY: see https://doc.rust-lang.org/reference/types/boolean.html#boolean-type
unsafe impl CheckedBitPattern for bool {
    type Bits = u8;

    #[inline]
    fn is_valid_bit_pattern(bits: &u8) -> bool {
        matches!(*bits, 0 | 1)
    }
}

/// A marker trait for types without uninitialized (padding) bytes
///
/// This is modelled after the [`NoUninit`](https://docs.rs/bytemuck/1/bytemuck/trait.NoUninit.html) trait of the
/// [`bytemuck`](https://docs.rs/bytemuck/1/bytemuck) crate.
///
/// In order for writing a value of a type `T` to a WNF state to be sound, `T` is required to implement [`NoUninit`].
///
/// # Implementation
/// This trait is already implemented by the `wnf` crate for many primitive types and types from the standard
/// library. There are several ways to implement it for your own types:
/// - Implement it directly, requiring `unsafe` code
/// - Derive the [`NoUninit`](https://docs.rs/bytemuck/1/bytemuck/trait.NoUninit.html) trait of the [`bytemuck`](https://docs.rs/bytemuck/1/bytemuck)
///   crate and derive this trait from it via the [`derive_from_bytemuck_v1`](crate::derive_from_bytemuck_v1) macro:
/// ```
/// # #[macro_use] extern crate wnf;
/// # extern crate bytemuck_v1 as bytemuck;
/// #
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// use wnf::{derive_from_bytemuck_v1, OwnedState};
///
/// #[derive(bytemuck::NoUninit, bytemuck::AnyBitPattern, Copy, Clone)]
/// #[repr(transparent)]
/// struct MyType(u32);
///
/// derive_from_bytemuck_v1!(NoUninit for MyType);
/// derive_from_bytemuck_v1!(AnyBitPattern for MyType);
///
/// let state: OwnedState<MyType> = OwnedState::create_temporary()?;
/// state.set(&MyType(42))?;
/// let data = state.get()?;
///
/// assert_eq!(data.0, 42);
/// # Ok(()) }
/// ```
/// - Derive the [`FromBytes`](https://docs.rs/zerocopy/0/zerocopy/trait.FromBytes.html) trait of the
/// [`zerocopy`](https://docs.rs/zerocopy/0/zerocopy) crate and derive this trait from it via the
/// [`derive_from_zerocopy`](crate::derive_from_zerocopy) macro:
/// ```
/// # #[macro_use] extern crate wnf;
/// #
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// use wnf::{derive_from_zerocopy, OwnedState};
///
/// #[derive(zerocopy::FromBytes, zerocopy::FromZeroes, zerocopy::AsBytes, Copy, Clone)]
/// #[repr(transparent)]
/// struct MyType(u32);
///
/// derive_from_zerocopy!(NoUninit for MyType);
/// derive_from_zerocopy!(AnyBitPattern for MyType);
///
/// let state: OwnedState<MyType> = OwnedState::create_temporary()?;
/// state.set(&MyType(42))?;
/// let data = state.get()?;
///
/// assert_eq!(data.0, 42);
/// # Ok(()) }
/// ```
///
/// # Safety
/// Implementing this trait for a type `T` is sound if the memory representation of any `T` contains no uninitialized
/// (i.e. padding) bytes.
pub unsafe trait NoUninit {}

// SAFETY: Values of these primitive types contain no uninitialized bytes
unsafe impl NoUninit for () {}
unsafe impl NoUninit for u8 {}
unsafe impl NoUninit for i8 {}
unsafe impl NoUninit for u16 {}
unsafe impl NoUninit for i16 {}
unsafe impl NoUninit for u32 {}
unsafe impl NoUninit for i32 {}
unsafe impl NoUninit for u64 {}
unsafe impl NoUninit for i64 {}
unsafe impl NoUninit for u128 {}
unsafe impl NoUninit for i128 {}
unsafe impl NoUninit for usize {}
unsafe impl NoUninit for isize {}
unsafe impl NoUninit for f32 {}
unsafe impl NoUninit for f64 {}
unsafe impl NoUninit for char {}
unsafe impl NoUninit for bool {}

// SAFETY: `NonZero*` are `#[repr(transparent)]` wrappers around the corresponding primitive types
unsafe impl NoUninit for num::NonZeroU8 {}
unsafe impl NoUninit for num::NonZeroI8 {}
unsafe impl NoUninit for num::NonZeroU16 {}
unsafe impl NoUninit for num::NonZeroI16 {}
unsafe impl NoUninit for num::NonZeroU32 {}
unsafe impl NoUninit for num::NonZeroI32 {}
unsafe impl NoUninit for num::NonZeroU64 {}
unsafe impl NoUninit for num::NonZeroI64 {}
unsafe impl NoUninit for num::NonZeroU128 {}
unsafe impl NoUninit for num::NonZeroI128 {}
unsafe impl NoUninit for num::NonZeroUsize {}
unsafe impl NoUninit for num::NonZeroIsize {}

// SAFETY:
// - `NonZero*` are `#[repr(transparent)]` wrappers around the corresponding primitive types
// - Niche optimization for `Option<NonZero*>` is guaranteed (see https://doc.rust-lang.org/std/option/#representation)
unsafe impl NoUninit for Option<num::NonZeroU8> {}
unsafe impl NoUninit for Option<num::NonZeroI8> {}
unsafe impl NoUninit for Option<num::NonZeroU16> {}
unsafe impl NoUninit for Option<num::NonZeroI16> {}
unsafe impl NoUninit for Option<num::NonZeroU32> {}
unsafe impl NoUninit for Option<num::NonZeroI32> {}
unsafe impl NoUninit for Option<num::NonZeroU64> {}
unsafe impl NoUninit for Option<num::NonZeroI64> {}
unsafe impl NoUninit for Option<num::NonZeroU128> {}
unsafe impl NoUninit for Option<num::NonZeroI128> {}
unsafe impl NoUninit for Option<num::NonZeroUsize> {}
unsafe impl NoUninit for Option<num::NonZeroIsize> {}

// SAFETY: `ManuallyDrop<T>` is a `#[repr(transparent)]` wrapper around `T`
unsafe impl<T> NoUninit for ManuallyDrop<T> where T: NoUninit + ?Sized {}

// SAFETY: `PhantomData<T>` is zero-sized
unsafe impl<T> NoUninit for PhantomData<T> where T: ?Sized {}

// SAFETY: `PhantomPinned` is zero-sized
unsafe impl NoUninit for PhantomPinned {}

// SAFETY: `num::Wrapping<T>` is a `#[repr(transparent)]` wrapper around `T`
unsafe impl<T> NoUninit for num::Wrapping<T> where T: NoUninit {}

// SAFETY:
// - Each array element contains no uninitialized bytes
// - There is no padding between the elements
unsafe impl<T, const N: usize> NoUninit for [T; N] where T: NoUninit {}

// SAFETY:
// - Each slice element contains no uninitialized bytes
// - There is no padding between the elements
unsafe impl<T> NoUninit for [T] where T: NoUninit {}

/// Reexports of items from third-party crates for use in macro-generated code
#[doc(hidden)]
pub mod __reexports {
    /// Reexport of the [`bytemuck`](https://docs.rs/bytemuck/1/bytemuck) crate in version 1.x
    ///
    /// This will be referred to by macro-generated code as `wnf::__reexports::bytemuck::v1`. The `v1` is for forward
    /// compatibility in case there will ever be a major version `2.x` of `bytemuck`. In that case, items from `v1`
    /// and `v2` are distinct and need to be reexported separately.
    #[cfg(feature = "bytemuck_v1")]
    pub mod bytemuck {
        pub use bytemuck_v1 as v1;
    }

    /// Reexport of the [`zerocopy`] crate
    ///
    /// This will be referred to by macro-generated code as `wnf::__reexports::zerocopy`. Note that in contrast to
    /// [`bytemuck`](https://docs.rs/bytemuck/1/bytemuck), there is no major version marker here. This is because
    /// `zerocopy` still has an unstable `0.x` version. In case it becomes stable, this reexport will be replaced
    /// with a reexport carrying `v1` in its name.
    #[cfg(feature = "zerocopy")]
    pub use zerocopy;
}

/// Macro for deriving `wnf` traits from [`bytemuck`](https://docs.rs/bytemuck/1/bytemuck) traits
///
/// Note that there cannot be a blanket implementation of `wnf` traits such as [`AnyBitPattern`] from
/// [`bytemuck`](https://docs.rs/bytemuck/1/bytemuck) traits such as
/// [`bytemuck::AnyBitPattern`](https://docs.rs/bytemuck/1/bytemuck/trait.AnyBitPattern.html). As
/// [`bytemuck`](https://docs.rs/bytemuck/1/bytemuck) is an optional dependency of `wnf`, such a blanket
/// implementation would have to be behind a feature gate just like any other
/// [`bytemuck`](https://docs.rs/bytemuck/1/bytemuck)-related functionality of `wnf`. However, adding a blanket
/// implementation is a breaking change and due to the way the Cargo feature resolver works, enabling a feature must not
/// introduce a breaking change.
///
/// This macro provides an alternative to a blanket implementation by requiring you to explicitly opt in to the
/// implementation.
///
/// If you have a type that implements
/// [`bytemuck::AnyBitPattern`](https://docs.rs/bytemuck/1/bytemuck/trait.AnyBitPattern.html),
/// [`bytemuck::CheckedBitPattern`](https://docs.rs/bytemuck/1/bytemuck/checked/trait.CheckedBitPattern.html) or
/// [`bytemuck::NoUninit`](https://docs.rs/bytemuck/1/bytemuck/trait.NoUninit.html), you can derive the corresponding
/// `wnf` traits as follows:
/// ```
/// # #[macro_use] extern crate wnf;
/// # extern crate bytemuck_v1 as bytemuck;
/// #
/// # fn main() {
/// use wnf::derive_from_bytemuck_v1;
///
/// #[derive(bytemuck::AnyBitPattern, Copy, Clone)]
/// #[repr(C)]
/// struct Foo(u8, u16);
///
/// derive_from_bytemuck_v1!(AnyBitPattern for Foo);
///
/// #[derive(bytemuck::CheckedBitPattern, Copy, Clone)]
/// #[repr(C)]
/// struct Bar(char);
///
/// derive_from_bytemuck_v1!(CheckedBitPattern for Bar);
///
/// #[derive(bytemuck::NoUninit, Copy, Clone)]
/// #[repr(C)]
/// struct Baz(bool);
///
/// derive_from_bytemuck_v1!(NoUninit for Baz);
/// # }
/// ```
///
/// Note that in case you already derive [`AnyBitPattern`], you cannot additionally derive [`CheckedBitPattern`] as
/// there is already a blanket implementation of [`CheckedBitPattern`] for any type implementing [`AnyBitPattern`].
#[cfg(feature = "bytemuck_v1")]
#[macro_export]
macro_rules! derive_from_bytemuck_v1 {
    (AnyBitPattern for $type:ty) => {
        const _: () = {
            use $crate::__reexports::bytemuck::v1 as bytemuck_v1;

            const fn assert_impl_any_bit_pattern<T: ?Sized + bytemuck_v1::AnyBitPattern>() {}
            assert_impl_any_bit_pattern::<$type>();

            // SAFETY:
            // - the above asserts that $type : bytemuck_v1::AnyBitPattern
            // - this implies the safety conditions of wnf::AnyBitPattern
            unsafe impl $crate::AnyBitPattern for $type {}
        };
    };

    (CheckedBitPattern for $type:ty) => {
        const _: () = {
            use $crate::__reexports::bytemuck::v1 as bytemuck_v1;

            const fn assert_impl_checked_bit_pattern<T: ?Sized + bytemuck_v1::CheckedBitPattern>() {}
            assert_impl_checked_bit_pattern::<$type>();

            #[derive(Clone, Copy)]
            #[repr(transparent)]
            #[allow(non_camel_case_types)]
            struct __wnf_derive_from_bytemuck_v1_Bits(<$type as bytemuck_v1::CheckedBitPattern>::Bits);

            // SAFETY:
            // - the inner type implements bytemuck_v1::AnyBitPattern
            // - this implies the safety conditions of wnf::AnyBitPattern
            // - this type is a #[repr(transparent)] wrapper around the inner type
            unsafe impl $crate::AnyBitPattern for __wnf_derive_from_bytemuck_v1_Bits {}

            // SAFETY:
            // - the implementation just delegates to bytemuck_v1::CheckedBitPattern
            // - this implies the safety conditions of wnf::CheckedBitPattern
            unsafe impl $crate::CheckedBitPattern for $type {
                type Bits = __wnf_derive_from_bytemuck_v1_Bits;

                fn is_valid_bit_pattern(bits: &Self::Bits) -> bool {
                    <$type as bytemuck_v1::CheckedBitPattern>::is_valid_bit_pattern(&bits.0)
                }
            }
        };
    };

    (NoUninit for $type:ty) => {
        const _: () = {
            use $crate::__reexports::bytemuck::v1 as bytemuck_v1;

            const fn assert_impl_no_uninit<T: ?Sized + bytemuck_v1::NoUninit>() {}
            assert_impl_no_uninit::<$type>();

            // SAFETY:
            // - the above asserts that $type : bytemuck_v1::NoUninit
            // - this implies the safety conditions of wnf::NoUninit
            unsafe impl $crate::NoUninit for $type {}
        };
    };

    ($trait:ident for $type:ty) => {
        compile_error!(concat!(
            "trait must be one of AnyBitPattern, CheckedBitPattern, NoUninit (found: ",
            stringify!($trait),
            ")"
        ));
    };
}

/// Macro for deriving `wnf` traits from [`zerocopy`](https://docs.rs/zerocopy/0/zerocopy) traits
///
/// Note that there cannot be a blanket implementation of `wnf` traits such as [`AnyBitPattern`] from
/// [`zerocopy`](https://docs.rs/zerocopy/0/zerocopy) traits such as
/// [`zerocopy::FromBytes`](https://docs.rs/zerocopy/0/zerocopy/trait.FromBytes.html). As
/// [`zerocopy`](https://docs.rs/zerocopy/0/zerocopy) is an optional dependency of `wnf`, such a blanket implementation
/// would have to be behind a feature gate just like any other [`zerocopy`](https://docs.rs/zerocopy/0/zerocopy)-related
/// functionality of `wnf`. However, adding a blanket implementation is a breaking change and due to the way the Cargo
/// feature resolver works, enabling a feature must not introduce a breaking change.
///
/// This macro provides an alternative to a blanket implementation by requiring you to explicitly opt in to the
/// implementation.
///
/// If you have a type that implements [`zerocopy::FromBytes`](https://docs.rs/zerocopy/0/zerocopy/trait.FromBytes.html)
/// or [`zerocopy::AsBytes`](https://docs.rs/zerocopy/0/zerocopy/trait.AsBytes.html), you can derive the corresponding
/// `wnf` traits as follows:
/// ```
/// # #[macro_use] extern crate wnf;
/// #
/// # fn main() {
/// use wnf::derive_from_zerocopy;
///
/// #[derive(zerocopy::FromBytes, zerocopy::FromZeroes, Copy, Clone)]
/// #[repr(C)]
/// struct Foo(u8, u16);
///
/// derive_from_zerocopy!(AnyBitPattern for Foo);
///
/// #[derive(zerocopy::AsBytes, Copy, Clone)]
/// #[repr(C)]
/// struct Bar(bool);
///
/// derive_from_zerocopy!(NoUninit for Bar);
/// # }
/// ```
#[cfg(feature = "zerocopy")]
#[macro_export]
macro_rules! derive_from_zerocopy {
    (AnyBitPattern for $type:ty) => {
        const _: () = {
            use $crate::__reexports::zerocopy;

            const fn assert_impl_from_bytes<T: ?Sized + zerocopy::FromBytes>() {}
            assert_impl_from_bytes::<$type>();

            // SAFETY:
            // - the above asserts that $type : zerocopy::FromBytes
            // - this implies the safety conditions of wnf::AnyBitPattern
            unsafe impl $crate::AnyBitPattern for $type {}
        };
    };

    (CheckedBitPattern for $type:ty) => {
        compile_error!("CheckedBitPattern cannot by derived from zerocopy");
    };

    (NoUninit for $type:ty) => {
        const _: () = {
            use $crate::__reexports::zerocopy;

            const fn assert_impl_as_bytes<T: ?Sized + zerocopy::AsBytes>() {}
            assert_impl_as_bytes::<$type>();

            // SAFETY:
            // - the above asserts that $type : zerocopy::AsBytes
            // - this implies the safety conditions of wnf::NoUninit
            unsafe impl $crate::NoUninit for $type {}
        };
    };

    ($trait:ident for $type:ty) => {
        compile_error!(concat!(
            "trait must be one of AnyBitPattern, NoUninit (found: ",
            stringify!($trait),
            ")"
        ));
    };
}