Struct PciRoot

Source
pub struct PciRoot {
    pub physical_address_base: u64,
    pub mmio_base: Option<*mut u32>,
    pub segement_group_number: SegmentGroupNumber,
    pub bus_begin: u8,
    pub bus_end: u8,
}
Expand description

代表一个PCI segement greoup.

Fields§

§physical_address_base: u64§mmio_base: Option<*mut u32>§segement_group_number: SegmentGroupNumber§bus_begin: u8§bus_end: u8

Implementations§

Source§

impl PciRoot

Source

pub fn new(segment_group_number: SegmentGroupNumber) -> Result<Self, PciError>

@brief 初始化结构体,获取ecam root所在物理地址后map到虚拟地址,再将该虚拟地址加入mmio_base变量 @return 成功返回结果,错误返回错误类型

Source

pub fn read_config( &self, bus_device_function: BusDeviceFunction, register_offset: u16, ) -> u32

@brief 通过bus_device_function和offset读取相应位置寄存器的值(32位) @param bus_device_function 在同一个group中pci设备的唯一标识符 @param register_offset 寄存器在设备中的offset @return u32 寄存器读值结果

Source

pub fn write_config( &mut self, bus_device_function: BusDeviceFunction, register_offset: u16, data: u32, )

@brief 通过bus_device_function和offset写入相应位置寄存器值(32位) @param bus_device_function 在同一个group中pci设备的唯一标识符 @param register_offset 寄存器在设备中的offset @param data 要写入的值

Source

pub fn external_capabilities( &self, bus_device_function: BusDeviceFunction, ) -> ExternalCapabilityIterator<'_>

@brief 返回迭代器,遍历pcie设备的external_capabilities

Trait Implementations§

Source§

impl Clone for PciRoot

Source§

fn clone(&self) -> PciRoot

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PciRoot

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for PciRoot

实现PciRoot的Display trait,自定义输出

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for PciRoot

Source§

fn eq(&self, other: &PciRoot) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for PciRoot

Source§

impl Send for PciRoot

线程间共享需要,该结构体只需要在初始化时写入数据,无需读写锁保证线程安全

Source§

impl StructuralPartialEq for PciRoot

Source§

impl Sync for PciRoot

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> Colorize for T
where T: ?Sized,

Source§

fn into_style(self) -> StyledValue<Self>
where Self: Sized,

Convert a value to a StyledValue with no styling yet Read more
Source§

fn style(&self) -> StyledValue<&Self>

Convert a value to a StyledValue with no styling yet Read more
Source§

fn into_style_with<F, B, U>( self, style: Style<F, B, U>, ) -> StyledValue<Self, F, B, U>
where Self: Sized,

Convert a value to a StyledValue and applies the given style Read more
Source§

fn style_with<F, B, U>( &self, style: Style<F, B, U>, ) -> StyledValue<&Self, F, B, U>

Convert a value to a StyledValue and applies the given style Read more
Source§

fn fg<C>(&self, color: C) -> StyledValue<&Self, C>

Changes the foreground color Read more
Source§

fn into_fg<C>(self, color: C) -> StyledValue<Self, C>
where Self: Sized,

Changes the foreground color Read more
Source§

fn bg<C>(&self, color: C) -> StyledValue<&Self, NoColor, C>

Changes the background color Read more
Source§

fn into_bg<C>(self, color: C) -> StyledValue<Self, NoColor, C>
where Self: Sized,

Changes the background color Read more
Source§

fn underline_color<C>( &self, color: C, ) -> StyledValue<&Self, NoColor, NoColor, C>

Changes the underline color Read more
Source§

fn into_underline_color<C>( self, color: C, ) -> StyledValue<Self, NoColor, NoColor, C>
where Self: Sized,

Changes the underline color Read more
Source§

fn black(&self) -> StyledValue<&Self, Black>

Changes the foreground to black
Source§

fn red(&self) -> StyledValue<&Self, Red>

Changes the foreground to red
Source§

fn green(&self) -> StyledValue<&Self, Green>

Changes the foreground to green
Source§

fn yellow(&self) -> StyledValue<&Self, Yellow>

Changes the foreground to yellow
Source§

fn blue(&self) -> StyledValue<&Self, Blue>

Changes the foreground to blue
Source§

fn magenta(&self) -> StyledValue<&Self, Magenta>

Changes the foreground to magenta
Source§

fn cyan(&self) -> StyledValue<&Self, Cyan>

Changes the foreground to cyan
Source§

fn white(&self) -> StyledValue<&Self, White>

Changes the foreground to white
Source§

fn bright_black(&self) -> StyledValue<&Self, BrightBlack>

Changes the foreground to bright black
Source§

fn bright_red(&self) -> StyledValue<&Self, BrightRed>

Changes the foreground to bright red
Source§

fn bright_green(&self) -> StyledValue<&Self, BrightGreen>

Changes the foreground to bright green
Source§

fn bright_yellow(&self) -> StyledValue<&Self, BrightYellow>

Changes the foreground to bright yellow
Source§

fn bright_blue(&self) -> StyledValue<&Self, BrightBlue>

Changes the foreground to bright blue
Source§

fn bright_magenta(&self) -> StyledValue<&Self, BrightMagenta>

Changes the foreground to bright magenta
Source§

fn bright_cyan(&self) -> StyledValue<&Self, BrightCyan>

Changes the foreground to bright cyan
Source§

fn bright_white(&self) -> StyledValue<&Self, BrightWhite>

Changes the foreground to bright white
Source§

fn on_black(&self) -> StyledValue<&Self, NoColor, Black>

Changes the background to black
Source§

fn on_red(&self) -> StyledValue<&Self, NoColor, Red>

Changes the background to red
Source§

fn on_green(&self) -> StyledValue<&Self, NoColor, Green>

Changes the background to green
Source§

fn on_yellow(&self) -> StyledValue<&Self, NoColor, Yellow>

Changes the background to yellow
Source§

fn on_blue(&self) -> StyledValue<&Self, NoColor, Blue>

Changes the background to blue
Source§

fn on_magenta(&self) -> StyledValue<&Self, NoColor, Magenta>

Changes the background to magenta
Source§

fn on_cyan(&self) -> StyledValue<&Self, NoColor, Cyan>

Changes the background to cyan
Source§

fn on_white(&self) -> StyledValue<&Self, NoColor, White>

Changes the background to white
Source§

fn on_bright_black(&self) -> StyledValue<&Self, NoColor, BrightBlack>

Changes the background to bright black
Source§

fn on_bright_red(&self) -> StyledValue<&Self, NoColor, BrightRed>

Changes the background to bright red
Source§

fn on_bright_green(&self) -> StyledValue<&Self, NoColor, BrightGreen>

Changes the background to bright green
Source§

fn on_bright_yellow(&self) -> StyledValue<&Self, NoColor, BrightYellow>

Changes the background to bright yellow
Source§

fn on_bright_blue(&self) -> StyledValue<&Self, NoColor, BrightBlue>

Changes the background to bright blue
Source§

fn on_bright_magenta(&self) -> StyledValue<&Self, NoColor, BrightMagenta>

Changes the background to bright magenta
Source§

fn on_bright_cyan(&self) -> StyledValue<&Self, NoColor, BrightCyan>

Changes the background to bright cyan
Source§

fn on_bright_white(&self) -> StyledValue<&Self, NoColor, BrightWhite>

Changes the background to bright white
Source§

fn into_black(self) -> StyledValue<Self, Black>
where Self: Sized,

Changes the foreground to black
Source§

fn into_red(self) -> StyledValue<Self, Red>
where Self: Sized,

Changes the foreground to red
Source§

fn into_green(self) -> StyledValue<Self, Green>
where Self: Sized,

Changes the foreground to green
Source§

fn into_yellow(self) -> StyledValue<Self, Yellow>
where Self: Sized,

Changes the foreground to yellow
Source§

fn into_blue(self) -> StyledValue<Self, Blue>
where Self: Sized,

Changes the foreground to blue
Source§

fn into_magenta(self) -> StyledValue<Self, Magenta>
where Self: Sized,

Changes the foreground to magenta
Source§

fn into_cyan(self) -> StyledValue<Self, Cyan>
where Self: Sized,

Changes the foreground to cyan
Source§

fn into_white(self) -> StyledValue<Self, White>
where Self: Sized,

Changes the foreground to white
Source§

fn into_bright_black(self) -> StyledValue<Self, BrightBlack>
where Self: Sized,

Changes the foreground to bright black
Source§

fn into_bright_red(self) -> StyledValue<Self, BrightRed>
where Self: Sized,

Changes the foreground to bright red
Source§

fn into_bright_green(self) -> StyledValue<Self, BrightGreen>
where Self: Sized,

Changes the foreground to bright green
Source§

fn into_bright_yellow(self) -> StyledValue<Self, BrightYellow>
where Self: Sized,

Changes the foreground to bright yellow
Source§

fn into_bright_blue(self) -> StyledValue<Self, BrightBlue>
where Self: Sized,

Changes the foreground to bright blue
Source§

fn into_bright_magenta(self) -> StyledValue<Self, BrightMagenta>
where Self: Sized,

Changes the foreground to bright magenta
Source§

fn into_bright_cyan(self) -> StyledValue<Self, BrightCyan>
where Self: Sized,

Changes the foreground to bright cyan
Source§

fn into_bright_white(self) -> StyledValue<Self, BrightWhite>
where Self: Sized,

Changes the foreground to bright white
Source§

fn into_on_black(self) -> StyledValue<Self, NoColor, Black>
where Self: Sized,

Changes the background to black
Source§

fn into_on_red(self) -> StyledValue<Self, NoColor, Red>
where Self: Sized,

Changes the background to red
Source§

fn into_on_green(self) -> StyledValue<Self, NoColor, Green>
where Self: Sized,

Changes the background to green
Source§

fn into_on_yellow(self) -> StyledValue<Self, NoColor, Yellow>
where Self: Sized,

Changes the background to yellow
Source§

fn into_on_blue(self) -> StyledValue<Self, NoColor, Blue>
where Self: Sized,

Changes the background to blue
Source§

fn into_on_magenta(self) -> StyledValue<Self, NoColor, Magenta>
where Self: Sized,

Changes the background to magenta
Source§

fn into_on_cyan(self) -> StyledValue<Self, NoColor, Cyan>
where Self: Sized,

Changes the background to cyan
Source§

fn into_on_white(self) -> StyledValue<Self, NoColor, White>
where Self: Sized,

Changes the background to white
Source§

fn into_on_bright_black(self) -> StyledValue<Self, NoColor, BrightBlack>
where Self: Sized,

Changes the background to bright black
Source§

fn into_on_bright_red(self) -> StyledValue<Self, NoColor, BrightRed>
where Self: Sized,

Changes the background to bright red
Source§

fn into_on_bright_green(self) -> StyledValue<Self, NoColor, BrightGreen>
where Self: Sized,

Changes the background to bright green
Source§

fn into_on_bright_yellow(self) -> StyledValue<Self, NoColor, BrightYellow>
where Self: Sized,

Changes the background to bright yellow
Source§

fn into_on_bright_blue(self) -> StyledValue<Self, NoColor, BrightBlue>
where Self: Sized,

Changes the background to bright blue
Source§

fn into_on_bright_magenta(self) -> StyledValue<Self, NoColor, BrightMagenta>
where Self: Sized,

Changes the background to bright magenta
Source§

fn into_on_bright_cyan(self) -> StyledValue<Self, NoColor, BrightCyan>
where Self: Sized,

Changes the background to bright cyan
Source§

fn into_on_bright_white(self) -> StyledValue<Self, NoColor, BrightWhite>
where Self: Sized,

Changes the background to bright white
Source§

fn bold(&self) -> StyledValue<&Self>

Applies the bold effect
Source§

fn dimmed(&self) -> StyledValue<&Self>

Applies the dimmed effect
Source§

fn italics(&self) -> StyledValue<&Self>

Applies the italics effect
Source§

fn underline(&self) -> StyledValue<&Self>

Applies the underline effect
Source§

fn double_underline(&self) -> StyledValue<&Self>

Applies the double underline effect
Applies the blink effect
Applies the blink fast effect
Source§

fn reverse(&self) -> StyledValue<&Self>

Applies the reverse effect
Source§

fn hide(&self) -> StyledValue<&Self>

Applies the hide effect
Source§

fn strikethrough(&self) -> StyledValue<&Self>

Applies the strikethrough effect
Source§

fn overline(&self) -> StyledValue<&Self>

Applies the overline effect
Source§

fn superscript(&self) -> StyledValue<&Self>

Applies the superscript effect
Source§

fn subscript(&self) -> StyledValue<&Self>

Applies the subscript effect
Source§

fn into_bold(self) -> StyledValue<Self>
where Self: Sized,

Applies the bold effect
Source§

fn into_dimmed(self) -> StyledValue<Self>
where Self: Sized,

Applies the dimmed effect
Source§

fn into_italics(self) -> StyledValue<Self>
where Self: Sized,

Applies the italics effect
Source§

fn into_underline(self) -> StyledValue<Self>
where Self: Sized,

Applies the underline effect
Source§

fn into_double_underline(self) -> StyledValue<Self>
where Self: Sized,

Applies the double underline effect
Applies the blink effect
Applies the blink fast effect
Source§

fn into_reverse(self) -> StyledValue<Self>
where Self: Sized,

Applies the reverse effect
Source§

fn into_hide(self) -> StyledValue<Self>
where Self: Sized,

Applies the hide effect
Source§

fn into_strikethrough(self) -> StyledValue<Self>
where Self: Sized,

Applies the strikethrough effect
Source§

fn into_overline(self) -> StyledValue<Self>
where Self: Sized,

Applies the overline effect
Source§

fn into_superscript(self) -> StyledValue<Self>
where Self: Sized,

Applies the superscript effect
Source§

fn into_subscript(self) -> StyledValue<Self>
where Self: Sized,

Applies the subscript effect
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.