Enum yaque::TrySendError

source ·
pub enum TrySendError<T> {
    Io(Error),
    QueueFull {
        item: T,
        base: PathBuf,
    },
}
Expand description

An error that occurs when trying to send into a queue.

Variants§

§

Io(Error)

An underlying IO error occurred.

§

QueueFull

Fields

§item: T

The thing that we were trying to send.

§base: PathBuf

The path for the queue where this problem happened.

The queue has reached its maximum capacity and is not open to be sent.

Implementations§

source§

impl<T> TrySendError<T>

source

pub fn unwrap_io(self) -> Error

Tries to unwrap the IO error. If not able to, panics. You can use the following pattern in your code:

queue.try_send(b"some stuff").map_err(TrySendError::unwrap_io)?;

Trait Implementations§

source§

impl<T: Debug> Debug for TrySendError<T>

source§

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

Formats the value using the given formatter. Read more
source§

impl<T> Display for TrySendError<T>

source§

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

Formats the value using the given formatter. Read more
source§

impl<T> From<Error> for TrySendError<T>

source§

fn from(error: Error) -> TrySendError<T>

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for TrySendError<T>

§

impl<T> Send for TrySendError<T>where T: Send,

§

impl<T> Sync for TrySendError<T>where T: Sync,

§

impl<T> Unpin for TrySendError<T>where T: Unpin,

§

impl<T> !UnwindSafe for TrySendError<T>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

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

§

type Error = Infallible

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

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

Performs the conversion.
source§

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

§

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

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

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

Performs the conversion.
§

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

§

fn vzip(self) -> V