[−][src]Struct dpdk_unix::SysPath
Represents /sys
.
Methods
impl SysPath
[src]
pub fn is_a_numa_machine(&self) -> bool
[src]
Is this a NUMA-based machine?
pub fn is_a_numa_node(&self, numa_node: u8) -> bool
[src]
Is this a NUMA node (assuming we're on a NUMA-based machine)?
Note that this might be a fake NUMA node, ie one lacking any hyper threads.
pub fn hyper_thread_path(
&self,
hyper_thread: HyperThread,
file_name: &str
) -> PathBuf
[src]
&self,
hyper_thread: HyperThread,
file_name: &str
) -> PathBuf
A hyper thread file.
pub fn numa_node_path(&self, numa_node: u8, file_name: &str) -> PathBuf
[src]
A NUMA node file.
pub fn pci_device_path(
&self,
pci_device: (u32, u8, u8, u8),
file_name: &str
) -> PathBuf
[src]
&self,
pci_device: (u32, u8, u8, u8),
file_name: &str
) -> PathBuf
A PCI device file.
pub fn hyper_threads_path(&self, file_name: &str) -> PathBuf
[src]
A path about all hyper threads.
pub fn numa_nodes_path(&self, file_name: &str) -> PathBuf
[src]
A path about all NUMA nodes.
pub fn pci_devices_path(&self, file_name: &str) -> PathBuf
[src]
A path about all PCI devices.
pub fn rescan_all_pci_buses_and_devices(&self) -> Result<()>
[src]
Rescans all PCI buses and devices.
Errors are swallowed.
Trait Implementations
impl Default for SysPath
[src]
impl Clone for SysPath
[src]
fn clone(&self) -> SysPath
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Ord for SysPath
[src]
fn cmp(&self, other: &SysPath) -> Ordering
[src]
fn max(self, other: Self) -> Self
1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
Compares and returns the minimum of two values. Read more
impl Eq for SysPath
[src]
impl PartialOrd<SysPath> for SysPath
[src]
fn partial_cmp(&self, other: &SysPath) -> Option<Ordering>
[src]
fn lt(&self, other: &SysPath) -> bool
[src]
fn le(&self, other: &SysPath) -> bool
[src]
fn gt(&self, other: &SysPath) -> bool
[src]
fn ge(&self, other: &SysPath) -> bool
[src]
impl PartialEq<SysPath> for SysPath
[src]
impl Hash for SysPath
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Debug for SysPath
[src]
impl<'de> Deserialize<'de> for SysPath
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl Serialize for SysPath
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,