Struct netlink_packet_route::link::Map
source · #[non_exhaustive]pub struct Map {
pub memory_start: u64,
pub memory_end: u64,
pub base_address: u64,
pub irq: u16,
pub dma: u8,
pub port: u8,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.memory_start: u64
§memory_end: u64
§base_address: u64
§irq: u16
§dma: u8
§port: u8
Trait Implementations§
impl Copy for Map
impl Eq for Map
impl StructuralEq for Map
impl StructuralPartialEq for Map
Auto Trait Implementations§
impl RefUnwindSafe for Map
impl Send for Map
impl Sync for Map
impl Unpin for Map
impl UnwindSafe for Map
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more