Skip to main content

NumaError

Enum NumaError 

Source
pub enum NumaError {
    PolicyNotSupported {
        policy: String,
        reason: String,
    },
    CapabilityMissing {
        capability: &'static str,
    },
    HardModeUnavailable {
        feature: &'static str,
        reason: String,
    },
    TopologyError {
        source: Error,
    },
    AllocationFailed {
        size: usize,
        source: Error,
    },
    PinningFailed {
        source: Error,
    },
    BindFailed {
        source: Error,
    },
    InvalidArgument {
        message: String,
    },
    NotSupported {
        feature: &'static str,
    },
    Io(Error),
}
Expand description

Unified error type for all numaperf operations.

Errors are structured to explain both what failed and why, enabling callers to take appropriate recovery actions.

Variants§

§

PolicyNotSupported

The requested memory policy is not supported on this kernel.

Fields

§policy: String

Description of the policy that failed.

§reason: String

Why the policy is not supported.

§

CapabilityMissing

A required capability is missing.

Fields

§capability: &'static str

The name of the missing capability (e.g., “CAP_SYS_NICE”).

§

HardModeUnavailable

Hard mode was requested but cannot be enforced.

Fields

§feature: &'static str

The feature that cannot be enforced.

§reason: String

Why hard mode is unavailable.

§

TopologyError

Topology discovery failed.

Fields

§source: Error

The underlying I/O error.

§

AllocationFailed

Memory allocation or mapping failed.

Fields

§size: usize

The requested allocation size.

§source: Error

The underlying I/O error.

§

PinningFailed

Thread pinning failed.

Fields

§source: Error

The underlying I/O error.

§

BindFailed

Memory binding (mbind) failed.

Fields

§source: Error

The underlying I/O error.

§

InvalidArgument

An invalid argument was provided.

Fields

§message: String

Description of the invalid argument.

§

NotSupported

Platform does not support the requested feature.

Fields

§feature: &'static str

The unsupported feature.

§

Io(Error)

Generic I/O error.

Implementations§

Source§

impl NumaError

Source

pub fn topology(source: Error) -> NumaError

Create a topology error from an I/O error.

Source

pub fn allocation(size: usize, source: Error) -> NumaError

Create an allocation error.

Source

pub fn pinning(source: Error) -> NumaError

Create a pinning error from an I/O error.

Source

pub fn bind(source: Error) -> NumaError

Create a bind error from an I/O error.

Source

pub fn policy_not_supported( policy: impl Into<String>, reason: impl Into<String>, ) -> NumaError

Create a policy not supported error.

Source

pub fn hard_mode_unavailable( feature: &'static str, reason: impl Into<String>, ) -> NumaError

Create a hard mode unavailable error.

Source

pub fn invalid_argument(message: impl Into<String>) -> NumaError

Create an invalid argument error.

Source

pub fn is_permission_error(&self) -> bool

Check if this error indicates a permission issue.

Source

pub fn is_not_supported(&self) -> bool

Check if this error indicates the feature is not supported.

Trait Implementations§

Source§

impl Debug for NumaError

Source§

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

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

impl Display for NumaError

Source§

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

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

impl Error for NumaError

Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl From<Error> for NumaError

Source§

fn from(source: Error) -> NumaError

Converts to this type from the input type.

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> 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> 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.