Enum threadgroup::JoinError [] [src]

pub enum JoinError {
    AllDone,
    Panicked,
    Timeout,
    Disconnected,
}

Possible error returns from join() and join_timeout().

Variants

Thread list is empty, nothing to join.

Joined thread has panicked, no result available.

No thread has finished yet.

Internal channel got disconnected (should not happen, only included for completeness).

Trait Implementations

impl Debug for JoinError
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for JoinError
[src]

[src]

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

1.0.0
[src]

This method tests for !=.