Skip to main content

PullerError

Trait PullerError 

Source
pub trait PullerError:
    Send
    + Unpin
    + 'static {
    // Provided method
    fn is_irrecoverable(&self) -> bool { ... }
}

Provided Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl PullerError for ()

Implementors§

Source§

impl<C> PullerError for HttpError<C>
where C: HttpClient,