xwrust::xwos::sync::sel

Enum SelError

source
pub enum SelError {
    Ok(XwEr),
    NotInit(XwEr),
    Interrupt(XwEr),
    Timedout(XwEr),
    NoSignal(XwEr),
    NotThreadContext(XwEr),
    OutOfSelPos(XwEr),
    AlreadyBound(XwEr),
    SelPosBusy(XwEr),
    Unknown(XwEr),
}
Expand description

信号选择器的错误码

Variants§

§

Ok(XwEr)

没有错误

§

NotInit(XwEr)

信号选择器没有初始化

§

Interrupt(XwEr)

等待被中断

§

Timedout(XwEr)

等待超时

§

NoSignal(XwEr)

没有检测到 选择信号

§

NotThreadContext(XwEr)

不在线程上下文内

§

OutOfSelPos(XwEr)

信号选择器的位置超出范围

§

AlreadyBound(XwEr)

信号选择器已经绑定

§

SelPosBusy(XwEr)

信号选择器的位置被占用

§

Unknown(XwEr)

未知错误

Implementations§

source§

impl SelError

source

pub fn unwrap(self) -> XwEr

消费掉 SelError 自身,返回内部的错误码。

source

pub const fn is_ok(&self) -> bool

如果错误码是 SelError::Ok ,返回 true

source

pub const fn is_err(&self) -> bool

如果错误码不是 SelError::Ok ,返回 true

Trait Implementations§

source§

impl Debug for SelError

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for SelError

§

impl RefUnwindSafe for SelError

§

impl Send for SelError

§

impl Sync for SelError

§

impl Unpin for SelError

§

impl UnwindSafe for SelError

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.