pub enum Error {
Show 19 variants Netcdf(nc_type), Str(String), IndexLen, SliceLen, BufferLen(usizeusize), IndexMismatch, SliceMismatch, ZeroSlice, Stride, TypeMismatch, TypeUnknown(nc_type), AlreadyExists, NotFound(String), Ambiguous, Overflow, Conversion(TryFromIntError), WrongDataset, Utf8Conversion(FromUtf8Error), NulError(NulError),
}
Expand description

Various error types that can occur in this crate

Variants

Netcdf(nc_type)

Errors from the wrapped netcdf library

Str(String)

Misc errors

IndexLen

Length of the request indices is inconsistent

SliceLen

Length of the slice indices is inconsistent

BufferLen(usizeusize)

Supplied the wrong length of the buffer

IndexMismatch

Some index is greater than expected

SliceMismatch

Requested a mismatched total slice

ZeroSlice

Requested a zero slice

Stride

Zero stride or matched with length != 1

TypeMismatch

Supplied the wrong type of parameter

TypeUnknown(nc_type)

Does not know the type (probably library error…)

AlreadyExists

Variable/dimension already exists

NotFound(String)

Could not find variable/attribute/etc

Ambiguous

Slice lengths are ambiguous

Overflow

Overflows possible lengths

Conversion(TryFromIntError)

Conversion error

WrongDataset

Identifier belongs to another dataset

Utf8Conversion(FromUtf8Error)

Name is not valid utf-8

NulError(NulError)

String contains NULL characters

Implementations

Was the error due to ambiguity of the indices or lengths?

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

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

🔬 This is a nightly-only experimental API. (backtrace)

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.