[][src]Enum scrummage::Unchanged

pub enum Unchanged {
    NotFound(NotFound),
    PermissionDenied,
}

The reason the priority of a process couldn't be set.

Variants

NotFound(NotFound)
PermissionDenied

The Process handle didn't have the suitable permissions to set priority.

Each platform has a set of rules around who can set whose priority, and you should check the documentation for your platform to make sure you are setting up the right permissions. If the details of this error would be useful for you, do file an issue about your use case! 😁

Trait Implementations

impl Debug for Unchanged[src]

impl Display for Unchanged[src]

impl Error for Unchanged[src]

impl From<NotFound> for Unchanged[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.