[][src]Enum onnxruntime::error::OrtDownloadError

#[non_exhaustive]pub enum OrtDownloadError {
    IoError(Error),
    ContentLengthError,
    CopyError {
        expected: u64,
        io: u64,
    },
}

Error from downloading pre-trained model from the ONNX Model Zoo.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
IoError(Error)

Generic input/output error

ContentLengthError

Error getting content-length from an HTTP GET request

CopyError

Mismatch between amount of downloaded and expected bytes

Fields of CopyError

expected: u64

Expected amount of bytes to download

io: u64

Number of bytes read from network and written to file

Trait Implementations

impl Debug for OrtDownloadError[src]

impl Display for OrtDownloadError[src]

impl Error for OrtDownloadError[src]

impl From<Error> for OrtDownloadError[src]

impl From<OrtDownloadError> for OrtError[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument 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.