Lines Matching refs:Interest
14 pub struct Interest(mio::Interest); struct
16 impl Interest { impl
20 pub const READABLE: Interest = Interest(mio::Interest::READABLE);
25 pub const WRITABLE: Interest = Interest(mio::Interest::WRITABLE);
74 pub const fn add(self, other: Interest) -> Interest { in add() argument
75 Interest(self.0.add(other.0)) in add()
79 pub(crate) const fn to_mio(self) -> mio::Interest { in to_mio() argument
85 Interest::READABLE => Ready::READABLE | Ready::READ_CLOSED, in mask()
86 Interest::WRITABLE => Ready::WRITABLE | Ready::WRITE_CLOSED, in mask()
92 impl ops::BitOr for Interest { implementation
101 impl ops::BitOrAssign for Interest { implementation
108 impl fmt::Debug for Interest { implementation