#[repr(u32)]pub enum SpawnError {
Other = 1,
InvalidArgument = 2,
ObjectNotFound = 3,
PermissionDenied = 4,
KernelError = 5,
}
Expand description
Possible spawn error types.
Variants§
Other = 1
Unclassified error.
InvalidArgument = 2
Argument was invalid.
ObjectNotFound = 3
A specified object was not found.
PermissionDenied = 4
Permission was denied.
KernelError = 5
The kernel encountered an error when spawning the thread.
Trait Implementations§
source§impl Clone for SpawnError
impl Clone for SpawnError
source§fn clone(&self) -> SpawnError
fn clone(&self) -> SpawnError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SpawnError
impl Debug for SpawnError
source§impl From<SpawnError> for spawn_error
impl From<SpawnError> for spawn_error
source§fn from(value: SpawnError) -> Self
fn from(value: SpawnError) -> Self
Converts to this type from the input type.
source§impl TryFrom<u32> for SpawnError
impl TryFrom<u32> for SpawnError
impl Copy for SpawnError
Auto Trait Implementations§
impl Freeze for SpawnError
impl RefUnwindSafe for SpawnError
impl Send for SpawnError
impl Sync for SpawnError
impl Unpin for SpawnError
impl UnwindSafe for SpawnError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)