pub enum ProcessSetSchedulerError {
InsufficientPermissions,
UnknownProcessId,
UnknownError(i32),
SchedulerConversionError(SchedulerConversionError),
}Variants§
InsufficientPermissions
UnknownProcessId
UnknownError(i32)
SchedulerConversionError(SchedulerConversionError)
Trait Implementations§
Source§impl Clone for ProcessSetSchedulerError
impl Clone for ProcessSetSchedulerError
Source§fn clone(&self) -> ProcessSetSchedulerError
fn clone(&self) -> ProcessSetSchedulerError
Returns a duplicate 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 ProcessSetSchedulerError
impl Debug for ProcessSetSchedulerError
Source§impl From<ProcessSetSchedulerError> for ProcessError
impl From<ProcessSetSchedulerError> for ProcessError
Source§fn from(_: ProcessSetSchedulerError) -> Self
fn from(_: ProcessSetSchedulerError) -> Self
Converts to this type from the input type.
Source§impl From<SchedulerConversionError> for ProcessSetSchedulerError
impl From<SchedulerConversionError> for ProcessSetSchedulerError
Source§fn from(v: SchedulerConversionError) -> Self
fn from(v: SchedulerConversionError) -> Self
Converts to this type from the input type.
Source§impl Hash for ProcessSetSchedulerError
impl Hash for ProcessSetSchedulerError
Source§impl PartialEq for ProcessSetSchedulerError
impl PartialEq for ProcessSetSchedulerError
impl Copy for ProcessSetSchedulerError
impl Eq for ProcessSetSchedulerError
impl StructuralPartialEq for ProcessSetSchedulerError
Auto Trait Implementations§
impl Freeze for ProcessSetSchedulerError
impl RefUnwindSafe for ProcessSetSchedulerError
impl Send for ProcessSetSchedulerError
impl Sync for ProcessSetSchedulerError
impl Unpin for ProcessSetSchedulerError
impl UnwindSafe for ProcessSetSchedulerError
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