pub enum __ghostFlags {
__ghostA,
__ghostB,
__ghostC,
__ghostABC,
}Variants§
Implementations§
Source§impl __ghostFlags
impl __ghostFlags
Sourcepub open spec fn enabled(self) -> bool
pub open spec fn enabled(self) -> bool
{
match self {
__ghostFlags::__ghostA => {
$crate::__bitflags_cfg_expr! {
() true
}
}
__ghostFlags::__ghostB => {
$crate::__bitflags_cfg_expr! {
() true
}
}
__ghostFlags::__ghostC => {
$crate::__bitflags_cfg_expr! {
() true
}
}
__ghostFlags::__ghostABC => {
$crate::__bitflags_cfg_expr! {
() true
}
}
}
}Auto Trait Implementations§
impl Freeze for __ghostFlags
impl RefUnwindSafe for __ghostFlags
impl Send for __ghostFlags
impl Sync for __ghostFlags
impl Unpin for __ghostFlags
impl UnsafeUnpin for __ghostFlags
impl UnwindSafe for __ghostFlags
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more