Enum eventsource_client::Error

source ·
pub enum Error {
    TimedOut,
    StreamClosed,
    InvalidParameter(Box<dyn Error + Send + 'static>),
    UnexpectedResponse(StatusCode),
    HttpStream(Box<dyn Error + Send + 'static>),
    Eof,
    UnexpectedEof,
    InvalidLine(String),
    InvalidEvent,
    MalformedLocationHeader(Box<dyn Error + Send + 'static>),
    MaxRedirectLimitReached(u32),
    Unexpected(Box<dyn Error + Send + 'static>),
}
Expand description

Error type returned from this library’s functions.

Variants§

§

TimedOut

§

StreamClosed

§

InvalidParameter(Box<dyn Error + Send + 'static>)

An invalid request parameter

§

UnexpectedResponse(StatusCode)

The HTTP response could not be handled.

§

HttpStream(Box<dyn Error + Send + 'static>)

An error reading from the HTTP response body.

§

Eof

The HTTP response stream ended

§

UnexpectedEof

The HTTP response stream ended unexpectedly (e.g. in the middle of an event).

§

InvalidLine(String)

Encountered a line not conforming to the SSE protocol.

§

InvalidEvent

§

MalformedLocationHeader(Box<dyn Error + Send + 'static>)

Encountered a malformed Location header.

§

MaxRedirectLimitReached(u32)

Reached maximum redirect limit after encountering Location headers.

§

Unexpected(Box<dyn Error + Send + 'static>)

An unexpected failure occurred.

Implementations§

source§

impl Error

source

pub fn is_http_stream_error(&self) -> bool

source

pub fn source(&self) -> Option<&(dyn Error + 'static)>

Trait Implementations§

source§

impl Debug for Error

source§

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

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

impl<E> From<E> for Error
where E: Error + Send + 'static,

source§

fn from(e: E) -> Error

Converts to this type from the input type.
source§

impl PartialEq for Error

source§

fn eq(&self, other: &Error) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl Freeze for Error

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl !Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<!> for T

source§

fn from(t: !) -> T

Converts to this type from the input type.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where 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, U> TryFrom<U> for T
where 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 T
where 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.
source§

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

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more