[][src]Struct over_there::core::reply::IoErrorArgs

pub struct IoErrorArgs {
    pub description: String,
    pub os_code: Option<i32>,
    pub error_kind: SerErrorKind,
}

Fields

description: Stringos_code: Option<i32>error_kind: SerErrorKind

Implementations

impl IoErrorArgs[src]

pub fn invalid_file_id(id: u32) -> Self[src]

pub fn invalid_proc_id(id: u32) -> Self[src]

pub fn pipe_unavailable() -> Self[src]

pub fn from_error_with_prefix(error: Error, prefix: &str) -> Self[src]

Trait Implementations

impl Clone for IoErrorArgs[src]

impl Debug for IoErrorArgs[src]

impl Default for IoErrorArgs[src]

impl<'de> Deserialize<'de> for IoErrorArgs[src]

impl Eq for IoErrorArgs[src]

impl From<Error> for IoErrorArgs[src]

impl Into<Error> for IoErrorArgs[src]

impl JsonSchema for IoErrorArgs[src]

impl PartialEq<IoErrorArgs> for IoErrorArgs[src]

impl SchemaInfo for IoErrorArgs[src]

impl Serialize for IoErrorArgs[src]

impl StructuralEq for IoErrorArgs[src]

impl StructuralPartialEq for IoErrorArgs[src]

impl ToString for IoErrorArgs[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,