[][src]Enum tus_client::Error

pub enum Error {
    UnexpectedStatusCode(usize),
    NotFoundError,
    MissingHeader(String),
    IoError(Error),
    ParsingError(ParseIntError),
    UnequalSizeError,
    FileReadError,
    WrongUploadOffsetError,
    FileTooLarge,
    HttpHandlerError(String),
}

Enumerates the errors which can occur during operation

Variants

UnexpectedStatusCode(usize)

The status code returned by the server was not one of the expected ones.

NotFoundError

The file specified was not found by the server.

MissingHeader(String)

A required header was missing from the server response.

IoError(Error)

An error occurred while doing disk IO. This may be while reading a file, or during a network call.

ParsingError(ParseIntError)

Unable to parse a value, which should be an integer.

UnequalSizeError

The size of the specified file, and the file size reported by the server do not match.

FileReadError

Unable to read the file specified.

WrongUploadOffsetError

The Client tried to upload the file with an incorrect offset.

FileTooLarge

The specified file is larger that what is supported by the server.

HttpHandlerError(String)

An error occurred in the HTTP handler.

Trait Implementations

impl From<Error> for Error[src]

impl From<ParseIntError> for Error[src]

impl Display for Error[src]

impl Debug for Error[src]

impl Error for Error[src]

fn description(&self) -> &str1.0.0[src]

This method is soft-deprecated. Read more

fn cause(&self) -> Option<&dyn Error>1.0.0[src]

Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

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

fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]

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

Auto Trait Implementations

impl Sync for Error

impl Send for Error

impl Unpin for Error

impl !RefUnwindSafe for Error

impl !UnwindSafe for Error

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]