Lines Matching refs:IoCapable
283 pub trait IoCapable<T> {} trait
327 Self: IoCapable<u8>, in try_read8()
336 Self: IoCapable<u16>, in try_read16()
345 Self: IoCapable<u32>, in try_read32()
354 Self: IoCapable<u64>, in try_read64()
363 Self: IoCapable<u8>, in try_write8()
372 Self: IoCapable<u16>, in try_write16()
381 Self: IoCapable<u32>, in try_write32()
390 Self: IoCapable<u64>, in try_write64()
399 Self: IoKnownSize + IoCapable<u8>, in read8()
408 Self: IoKnownSize + IoCapable<u16>, in read16()
417 Self: IoKnownSize + IoCapable<u32>, in read32()
426 Self: IoKnownSize + IoCapable<u64>, in read64()
435 Self: IoKnownSize + IoCapable<u8>, in write8()
444 Self: IoKnownSize + IoCapable<u16>, in write16()
453 Self: IoKnownSize + IoCapable<u32>, in write32()
462 Self: IoKnownSize + IoCapable<u64>, in write64()
491 impl<const SIZE: usize> IoCapable<u8> for Mmio<SIZE> {}
492 impl<const SIZE: usize> IoCapable<u16> for Mmio<SIZE> {}
493 impl<const SIZE: usize> IoCapable<u32> for Mmio<SIZE> {}
497 impl<const SIZE: usize> IoCapable<u64> for Mmio<SIZE> {}