[][src]Struct interprocess::PartialMsgWriteError

pub struct PartialMsgWriteError;

Marker error indicating that a datagram write operation failed because the amount of bytes which were actually written as reported by the operating system was smaller than the size of the message which was requested to be written.

Always emitted with the ErrorKind::Other error type.

Trait Implementations

impl Clone for PartialMsgWriteError[src]

impl Copy for PartialMsgWriteError[src]

impl Debug for PartialMsgWriteError[src]

impl Default for PartialMsgWriteError[src]

impl Display for PartialMsgWriteError[src]

impl Eq for PartialMsgWriteError[src]

impl Error for PartialMsgWriteError[src]

impl PartialEq<PartialMsgWriteError> for PartialMsgWriteError[src]

impl StructuralEq for PartialMsgWriteError[src]

impl StructuralPartialEq for PartialMsgWriteError[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> 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.