#[macro_export]
#[doc(hidden)]
macro_rules! __declare_public_bitflags {
(
$(#[$outer:meta])*
$vis:vis struct $PublicBitFlags:ident
) => {
$(#[$outer])*
$vis struct $PublicBitFlags(<$PublicBitFlags as $crate::__private::PublicFlags>::Internal);
};
}
#[macro_export]
#[doc(hidden)]
macro_rules! __impl_public_bitflags_forward {
(
$(#[$outer:meta])*
$PublicBitFlags:ident: $T:ty, $InternalBitFlags:ident
) => {
$crate::__impl_bitflags! {
params: self, bits, name, other, value;
$(#[$outer])*
$PublicBitFlags: $T {
fn empty() {
Self($InternalBitFlags::empty())
}
fn all() {
Self($InternalBitFlags::all())
}
fn bits(&self) {
self.0.bits()
}
fn from_bits(bits) {
match $InternalBitFlags::from_bits(bits) {
$crate::__private::core::option::Option::Some(bits) => $crate::__private::core::option::Option::Some(Self(bits)),
$crate::__private::core::option::Option::None => $crate::__private::core::option::Option::None,
}
}
fn from_bits_truncate(bits) {
Self($InternalBitFlags::from_bits_truncate(bits))
}
fn from_bits_retain(bits) {
Self($InternalBitFlags::from_bits_retain(bits))
}
fn from_name(name) {
match $InternalBitFlags::from_name(name) {
$crate::__private::core::option::Option::Some(bits) => $crate::__private::core::option::Option::Some(Self(bits)),
$crate::__private::core::option::Option::None => $crate::__private::core::option::Option::None,
}
}
fn is_empty(&self) {
self.0.is_empty()
}
fn is_all(&self) {
self.0.is_all()
}
fn intersects(&self, other) {
self.0.intersects(other.0)
}
fn contains(&self, other) {
self.0.contains(other.0)
}
fn insert(&mut self, other) {
self.0.insert(other.0)
}
fn remove(&mut self, other) {
self.0.remove(other.0)
}
fn toggle(&mut self, other) {
self.0.toggle(other.0)
}
fn set(&mut self, other, value) {
self.0.set(other.0, value)
}
fn intersection(self, other) {
Self(self.0.intersection(other.0))
}
fn union(self, other) {
Self(self.0.union(other.0))
}
fn difference(self, other) {
Self(self.0.difference(other.0))
}
fn symmetric_difference(self, other) {
Self(self.0.symmetric_difference(other.0))
}
fn complement(self) {
Self(self.0.complement())
}
}
}
};
}
#[macro_export]
#[doc(hidden)]
macro_rules! __impl_public_bitflags {
(
$(#[$outer:meta])*
$BitFlags:ident: $T:ty, $PublicBitFlags:ident {
$(
$(#[$inner:ident $($args:tt)*])*
const $Flag:tt = $value:expr;
)*
}
) => {
$crate::__impl_bitflags! {
params: self, bits, name, other, value;
$(#[$outer])*
$BitFlags: $T {
fn empty() {
Self(<$T as $crate::Bits>::EMPTY)
}
fn all() {
let mut truncated = <$T as $crate::Bits>::EMPTY;
let mut i = 0;
$(
$crate::__bitflags_expr_safe_attrs!(
$(#[$inner $($args)*])*
{{
let flag = <$PublicBitFlags as $crate::Flags>::FLAGS[i].value().bits();
truncated = truncated | flag;
i += 1;
}}
);
)*
let _ = i;
Self(truncated)
}
fn bits(&self) {
self.0
}
fn from_bits(bits) {
let truncated = Self::from_bits_truncate(bits).0;
if truncated == bits {
$crate::__private::core::option::Option::Some(Self(bits))
} else {
$crate::__private::core::option::Option::None
}
}
fn from_bits_truncate(bits) {
Self(bits & Self::all().0)
}
fn from_bits_retain(bits) {
Self(bits)
}
fn from_name(name) {
$(
$crate::__bitflags_flag!({
name: $Flag,
named: {
$crate::__bitflags_expr_safe_attrs!(
$(#[$inner $($args)*])*
{
if name == $crate::__private::core::stringify!($Flag) {
return $crate::__private::core::option::Option::Some(Self($PublicBitFlags::$Flag.bits()));
}
}
);
},
unnamed: {},
});
)*
let _ = name;
$crate::__private::core::option::Option::None
}
fn is_empty(&self) {
self.0 == <$T as $crate::Bits>::EMPTY
}
fn is_all(&self) {
Self::all().0 | self.0 == self.0
}
fn intersects(&self, other) {
self.0 & other.0 != <$T as $crate::Bits>::EMPTY
}
fn contains(&self, other) {
self.0 & other.0 == other.0
}
fn insert(&mut self, other) {
*self = Self(self.0).union(other);
}
fn remove(&mut self, other) {
*self = Self(self.0).difference(other);
}
fn toggle(&mut self, other) {
*self = Self(self.0).symmetric_difference(other);
}
fn set(&mut self, other, value) {
if value {
self.insert(other);
} else {
self.remove(other);
}
}
fn intersection(self, other) {
Self(self.0 & other.0)
}
fn union(self, other) {
Self(self.0 | other.0)
}
fn difference(self, other) {
Self(self.0 & !other.0)
}
fn symmetric_difference(self, other) {
Self(self.0 ^ other.0)
}
fn complement(self) {
Self::from_bits_truncate(!self.0)
}
}
}
};
}
#[macro_export]
#[doc(hidden)]
macro_rules! __impl_public_bitflags_iter {
(
$(#[$outer:meta])*
$BitFlags:ident: $T:ty, $PublicBitFlags:ident
) => {
$(#[$outer])*
impl $BitFlags {
#[inline]
pub const fn iter(&self) -> $crate::iter::Iter<$PublicBitFlags> {
$crate::iter::Iter::__private_const_new(
<$PublicBitFlags as $crate::Flags>::FLAGS,
$PublicBitFlags::from_bits_retain(self.bits()),
$PublicBitFlags::from_bits_retain(self.bits()),
)
}
#[inline]
pub const fn iter_names(&self) -> $crate::iter::IterNames<$PublicBitFlags> {
$crate::iter::IterNames::__private_const_new(
<$PublicBitFlags as $crate::Flags>::FLAGS,
$PublicBitFlags::from_bits_retain(self.bits()),
$PublicBitFlags::from_bits_retain(self.bits()),
)
}
}
$(#[$outer:meta])*
impl $crate::__private::core::iter::IntoIterator for $BitFlags {
type Item = $PublicBitFlags;
type IntoIter = $crate::iter::Iter<$PublicBitFlags>;
fn into_iter(self) -> Self::IntoIter {
self.iter()
}
}
};
}
#[macro_export]
#[doc(hidden)]
macro_rules! __impl_public_bitflags_ops {
(
$(#[$outer:meta])*
$PublicBitFlags:ident
) => {
$(#[$outer])*
impl $crate::__private::core::fmt::Binary for $PublicBitFlags {
fn fmt(
&self,
f: &mut $crate::__private::core::fmt::Formatter,
) -> $crate::__private::core::fmt::Result {
let inner = self.0;
$crate::__private::core::fmt::Binary::fmt(&inner, f)
}
}
$(#[$outer])*
impl $crate::__private::core::fmt::Octal for $PublicBitFlags {
fn fmt(
&self,
f: &mut $crate::__private::core::fmt::Formatter,
) -> $crate::__private::core::fmt::Result {
let inner = self.0;
$crate::__private::core::fmt::Octal::fmt(&inner, f)
}
}
$(#[$outer])*
impl $crate::__private::core::fmt::LowerHex for $PublicBitFlags {
fn fmt(
&self,
f: &mut $crate::__private::core::fmt::Formatter,
) -> $crate::__private::core::fmt::Result {
let inner = self.0;
$crate::__private::core::fmt::LowerHex::fmt(&inner, f)
}
}
$(#[$outer])*
impl $crate::__private::core::fmt::UpperHex for $PublicBitFlags {
fn fmt(
&self,
f: &mut $crate::__private::core::fmt::Formatter,
) -> $crate::__private::core::fmt::Result {
let inner = self.0;
$crate::__private::core::fmt::UpperHex::fmt(&inner, f)
}
}
$(#[$outer])*
impl $crate::__private::core::ops::BitOr for $PublicBitFlags {
type Output = Self;
#[inline]
fn bitor(self, other: $PublicBitFlags) -> Self {
self.union(other)
}
}
$(#[$outer])*
impl $crate::__private::core::ops::BitOrAssign for $PublicBitFlags {
#[inline]
fn bitor_assign(&mut self, other: Self) {
self.insert(other);
}
}
$(#[$outer])*
impl $crate::__private::core::ops::BitXor for $PublicBitFlags {
type Output = Self;
#[inline]
fn bitxor(self, other: Self) -> Self {
self.symmetric_difference(other)
}
}
$(#[$outer])*
impl $crate::__private::core::ops::BitXorAssign for $PublicBitFlags {
#[inline]
fn bitxor_assign(&mut self, other: Self) {
self.toggle(other);
}
}
$(#[$outer])*
impl $crate::__private::core::ops::BitAnd for $PublicBitFlags {
type Output = Self;
#[inline]
fn bitand(self, other: Self) -> Self {
self.intersection(other)
}
}
$(#[$outer])*
impl $crate::__private::core::ops::BitAndAssign for $PublicBitFlags {
#[inline]
fn bitand_assign(&mut self, other: Self) {
*self = Self::from_bits_retain(self.bits()).intersection(other);
}
}
$(#[$outer])*
impl $crate::__private::core::ops::Sub for $PublicBitFlags {
type Output = Self;
#[inline]
fn sub(self, other: Self) -> Self {
self.difference(other)
}
}
$(#[$outer])*
impl $crate::__private::core::ops::SubAssign for $PublicBitFlags {
#[inline]
fn sub_assign(&mut self, other: Self) {
self.remove(other);
}
}
$(#[$outer])*
impl $crate::__private::core::ops::Not for $PublicBitFlags {
type Output = Self;
#[inline]
fn not(self) -> Self {
self.complement()
}
}
$(#[$outer])*
impl $crate::__private::core::iter::Extend<$PublicBitFlags> for $PublicBitFlags {
fn extend<T: $crate::__private::core::iter::IntoIterator<Item = Self>>(
&mut self,
iterator: T,
) {
for item in iterator {
self.insert(item)
}
}
}
$(#[$outer])*
impl $crate::__private::core::iter::FromIterator<$PublicBitFlags> for $PublicBitFlags {
fn from_iter<T: $crate::__private::core::iter::IntoIterator<Item = Self>>(
iterator: T,
) -> Self {
use $crate::__private::core::iter::Extend;
let mut result = Self::empty();
result.extend(iterator);
result
}
}
};
}
#[macro_export]
#[doc(hidden)]
macro_rules! __impl_public_bitflags_consts {
(
$(#[$outer:meta])*
$PublicBitFlags:ident: $T:ty {
$(
$(#[$inner:ident $($args:tt)*])*
const $Flag:tt = $value:expr;
)*
}
) => {
$(#[$outer])*
impl $PublicBitFlags {
$(
$crate::__bitflags_flag!({
name: $Flag,
named: {
$(#[$inner $($args)*])*
#[allow(
deprecated,
non_upper_case_globals,
)]
pub const $Flag: Self = Self::from_bits_retain($value);
},
unnamed: {},
});
)*
}
$(#[$outer])*
impl $crate::Flags for $PublicBitFlags {
const FLAGS: &'static [$crate::Flag<$PublicBitFlags>] = &[
$(
$crate::__bitflags_flag!({
name: $Flag,
named: {
$crate::__bitflags_expr_safe_attrs!(
$(#[$inner $($args)*])*
{
#[allow(
deprecated,
non_upper_case_globals,
)]
$crate::Flag::new($crate::__private::core::stringify!($Flag), $PublicBitFlags::$Flag)
}
)
},
unnamed: {
$crate::__bitflags_expr_safe_attrs!(
$(#[$inner $($args)*])*
{
#[allow(
deprecated,
non_upper_case_globals,
)]
$crate::Flag::new("", $PublicBitFlags::from_bits_retain($value))
}
)
},
}),
)*
];
type Bits = $T;
fn bits(&self) -> $T {
$PublicBitFlags::bits(self)
}
fn from_bits_retain(bits: $T) -> $PublicBitFlags {
$PublicBitFlags::from_bits_retain(bits)
}
}
};
}