pub struct PciConfig<'a> { /* private fields */ }
Expand description

This lets you interact with the config space (conventional or extended) of a PCI device.

This doesn’t have a definite length because we want to preserve the PciSubregion over the whole of config space.

Implementations

Returns a thing that lets you access the PCI Capabilities.

Calling this will (re)scan all Capabilities, which is why it can fail.

Returns a thing that lets you access the PCI Extended Capabilities.

Calling this will (re)scan all Extended Capabilities, which is why it can fail.

Trait Implementations

Returns a PciSubregion corresponding to self.

Returns a PciSubregion corresponding to a range of self.

Does not check whether the subregion is big enough. If it isn’t, accesses may later fail.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The length of the region in bytes.

Whether the region may be read, written, or both.

Returns a const pointer to the beginning of the PciRegion. Read more

Returns a mut pointer to the beginning of the PciRegion. Read more

Read from a contiguous range of the region into a byte buffer. Read more

Read an u8 at the given byte offset from the beginning of the PciRegion. Read more

Write an u8 at the given byte offset from the beginning of the PciRegion. Read more

Read a little-endian u16 at the given byte offset from the beginning of the PciRegion. Read more

Write a little-endian u16 at the given byte offset from the beginning of the PciRegion. Read more

Read a little-endian u32 at the given byte offset from the beginning of the PciRegion. Read more

Write a little-endian u32 at the given byte offset from the beginning of the PciRegion. Read more

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.