ostd 0.17.2

Rust OS framework that facilitates the development of and innovation in OS kernels
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: MPL-2.0

//! Bus probe error

// TODO: Implement a bus component and move the `BusProbeError` into the module.

/// An error that occurs during bus probing.
#[derive(Debug, Eq, Ord, PartialEq, PartialOrd)]
pub enum BusProbeError {
    /// The device does not match the expected criteria.
    DeviceNotMatch,
    /// An error in accessing the configuration space of the device.
    ConfigurationSpaceError,
}