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()
153 pub(crate) fn from_usize(val: usize) -> Ready { in from_usize()
169 impl Ready { impl
196 impl ops::BitOr<Ready> for Ready { implementation
200 fn bitor(self, other: Ready) -> Ready { in bitor()
205 impl ops::BitOrAssign<Ready> for Ready { implementation
207 fn bitor_assign(&mut self, other: Ready) { in bitor_assign()
212 impl ops::BitAnd<Ready> for Ready { implementation
216 fn bitand(self, other: Ready) -> Ready { in bitand()
221 impl ops::Sub<Ready> for Ready { implementation
225 fn sub(self, other: Ready) -> Ready { in sub()
230 impl fmt::Debug for Ready { implementation