Home
last modified time | relevance | path

Searched refs:MmioRaw (Results 1 – 2 of 2) sorted by relevance

/linux/rust/kernel/pci/
H A Dio.rs16 MmioRaw,
172 io: MmioRaw<crate::io::Region<SIZE>>, in new()
225 let io = match MmioRaw::new_region(ioptr, len as usize) {
/linux/rust/kernel/
H A Dio.rs120 pub struct MmioRaw<T: ?Sized> { struct
127 impl<T: ?Sized> Copy for MmioRaw<T> {} implementation
128 impl<T: ?Sized> Clone for MmioRaw<T> { implementation
136 unsafe impl<T: ?Sized> Send for MmioRaw<T> {} implementation
138 unsafe impl<T: ?Sized> Sync for MmioRaw<T> {} implementation
140 impl<T> MmioRaw<T> { implementation
150 impl<const SIZE: usize> MmioRaw<Region<SIZE>> { implementation
162 impl<T: ?Sized + KnownSize> MmioRaw<T> { implementation
1141 pub unsafe fn from_raw(raw: MmioRaw<T>) -> Self { in from_raw()