chore: add vendor dependencies for kauma build
This commit is contained in:
parent
7c94e5d8fb
commit
067ef6141c
1758 changed files with 398473 additions and 0 deletions
23
vendor/bitflags/examples/custom_derive.rs
vendored
Normal file
23
vendor/bitflags/examples/custom_derive.rs
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
//! An example of implementing the `BitFlags` trait manually for a flags type.
|
||||
|
||||
use std::str;
|
||||
|
||||
use bitflags::bitflags;
|
||||
|
||||
// Define a flags type outside of the `bitflags` macro as a newtype
|
||||
// It can accept custom derives for libraries `bitflags` doesn't support natively
|
||||
#[derive(zerocopy::AsBytes, zerocopy::FromBytes, zerocopy::FromZeroes)]
|
||||
#[repr(transparent)]
|
||||
pub struct ManualFlags(u32);
|
||||
|
||||
// Next: use `impl Flags` instead of `struct Flags`
|
||||
bitflags! {
|
||||
impl ManualFlags: u32 {
|
||||
const A = 0b00000001;
|
||||
const B = 0b00000010;
|
||||
const C = 0b00000100;
|
||||
const ABC = Self::A.bits() | Self::B.bits() | Self::C.bits();
|
||||
}
|
||||
}
|
||||
|
||||
fn main() {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue