Enum crossbeam_channel::TrySendError [] [src]

pub enum TrySendError<T> {
    Full(T),
    Disconnected(T),
}

This enumeration is the list of the possible error outcomes for the try_send method.

Variants

The data could not be sent on the channel because it would require that the callee block to send the data.

If this is a zero-capacity channel, then the error indicates that there was no receiver available to receive the message at the time.

This channel's receiving half has disconnected, so the data could not be sent. The data is returned back to the callee in this case.

Methods

impl<T> TrySendError<T>
[src]

[src]

Unwraps the value.

Examples

use crossbeam_channel::bounded;

let (tx, rx) = bounded(0);

if let Err(err) = tx.try_send("foo") {
    assert_eq!(err.into_inner(), "foo");
}

Trait Implementations

impl<T: PartialEq> PartialEq for TrySendError<T>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<T: Eq> Eq for TrySendError<T>
[src]

impl<T: Clone> Clone for TrySendError<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Copy> Copy for TrySendError<T>
[src]

impl<T> Debug for TrySendError<T>
[src]

[src]

Formats the value using the given formatter.

impl<T> Display for TrySendError<T>
[src]

[src]

Formats the value using the given formatter. Read more

impl<T: Send> Error for TrySendError<T>
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more