Lines Matching defs:Ready
16 pub struct Ready(usize); struct
18 impl Ready { impl
38 pub(crate) fn from_mio(event: &mio::event::Event) -> Ready { in from_mio()
164 pub(crate) fn from_usize(val: usize) -> Ready { in from_usize()
180 impl Ready { impl
207 impl ops::BitOr<Ready> for Ready { implementation
211 fn bitor(self, other: Ready) -> Ready { in bitor()
216 impl ops::BitOrAssign<Ready> for Ready { implementation
218 fn bitor_assign(&mut self, other: Ready) { in bitor_assign()
223 impl ops::BitAnd<Ready> for Ready { implementation
227 fn bitand(self, other: Ready) -> Ready { in bitand()
232 impl ops::Sub<Ready> for Ready { implementation
236 fn sub(self, other: Ready) -> Ready { in sub()
241 impl fmt::Debug for Ready { implementation