pub struct Error(/* private fields */);
Expand description
A small and no_std
compatible error type
The Error::raw_os_error()
will indicate if the error is from the OS, and
if so, which error code the OS gave the application. If such an error is
encountered, please consult with your system documentation.
Internally this type is a NonZeroU32, with certain values reserved for
certain purposes, see Error::INTERNAL_START
and Error::CUSTOM_START
.
If this crate’s "std"
Cargo feature is enabled, then:
getrandom::Error
implementsstd::error::Error
std::io::Error
implementsFrom<getrandom::Error>
.
Implementations§
Source§impl Error
impl Error
Sourcepub const UNSUPPORTED: Error = _
pub const UNSUPPORTED: Error = _
This target/platform is not supported by getrandom
.
Sourcepub const ERRNO_NOT_POSITIVE: Error = _
pub const ERRNO_NOT_POSITIVE: Error = _
The platform-specific errno
returned a non-positive value.
Sourcepub const UNEXPECTED: Error = _
pub const UNEXPECTED: Error = _
Encountered an unexpected situation which should not happen in practice.
Sourcepub const INTERNAL_START: u32 = 2_147_483_648u32
pub const INTERNAL_START: u32 = 2_147_483_648u32
Codes below this point represent OS Errors (i.e. positive i32 values).
Codes at or above this point, but below Error::CUSTOM_START
are
reserved for use by the rand
and getrandom
crates.
Sourcepub const CUSTOM_START: u32 = 3_221_225_472u32
pub const CUSTOM_START: u32 = 3_221_225_472u32
Codes at or above this point can be used by users to define their own custom errors.
Sourcepub fn raw_os_error(self) -> Option<i32>
pub fn raw_os_error(self) -> Option<i32>
Extract the raw OS error code (if this error came from the OS)
This method is identical to std::io::Error::raw_os_error()
, except
that it works in no_std
contexts. On most targets this method returns
Option<i32>
, but some platforms (e.g. UEFI) may use a different primitive
type like usize
. Consult with the RawOsError
docs for more information.
If this method returns None
, the error value can still be formatted via
the Display
implementation.
Sourcepub const fn new_custom(n: u16) -> Error
pub const fn new_custom(n: u16) -> Error
Creates a new instance of an Error
from a particular custom error code.