mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
parent
e3eeaee542
commit
8c3e8ebfd9
27 changed files with 176 additions and 287 deletions
|
@ -18,7 +18,7 @@ path = "src/lib.rs"
|
|||
[dependencies]
|
||||
ntex-rt = "0.4.7"
|
||||
ntex-service = "1.2.6"
|
||||
bitflags = "1.3"
|
||||
bitflags = "2.4"
|
||||
fxhash = "0.2.1"
|
||||
log = "0.4"
|
||||
slab = "0.4"
|
||||
|
|
|
@ -26,6 +26,7 @@ impl<T> fmt::Debug for Pool<T> {
|
|||
}
|
||||
|
||||
bitflags::bitflags! {
|
||||
#[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
|
||||
struct Flags: u8 {
|
||||
const SENDER = 0b0000_0001;
|
||||
const RECEIVER = 0b0000_0010;
|
||||
|
|
|
@ -131,6 +131,7 @@ impl Drop for TimerHandle {
|
|||
}
|
||||
|
||||
bitflags::bitflags! {
|
||||
#[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
|
||||
pub struct Flags: u8 {
|
||||
const DRIVER_STARTED = 0b0000_0001;
|
||||
const DRIVER_RECALC = 0b0000_0010;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue