Type Alias deadpool::managed::RecycleResult

source ·
pub type RecycleResult<E> = Result<(), RecycleError<E>>;
Available on crate feature managed only.
Expand description

Result type of the Manager::recycle() method.

Aliased Type§

enum RecycleResult<E> {
    Ok(()),
    Err(RecycleError<E>),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(RecycleError<E>)

Contains the error value