[−][src]Enum netcdf::error::Error
Various error types that can occur in this crate
Variants
Netcdf(nc_type)
Errors from the wrapped netcdf library
Str(String)
Misc errors
Length of the request indices is inconsistent
Length of the slice indices is inconsistent
Supplied the wrong length of the buffer
Some index is greater than expected
Requested a mismatched total slice
Requested a zero slice
Zero stride or matched with length != 1
Supplied the wrong type of parameter
TypeUnknown(nc_type)
Does not know the type (probably library error...)
Variable/dimension already exists
NotFound(String)
Could not find variable/attribute/etc
Slice lengths are ambiguous
Overflows possible lengths
Conversion(TryFromIntError)
Conversion error
Identifier belongs to another dataset
Utf8Conversion(FromUtf8Error)
Name is not valid utf-8
Implementations
impl Error
[src]
pub fn is_ambigous(&self) -> bool
[src]
Was the error due to ambiguity of the indices or lengths?
Trait Implementations
impl Debug for Error
[src]
impl Display for Error
[src]
impl Error for Error
[src]
fn source(&self) -> Option<&(dyn Error + 'static)>
[src]
fn backtrace(&self) -> Option<&Backtrace>
[src]
fn description(&self) -> &str
1.0.0[src]
fn cause(&self) -> Option<&dyn Error>
1.0.0[src]
impl<'_> From<&'_ str> for Error
[src]
impl From<FromUtf8Error> for Error
[src]
fn from(e: FromUtf8Error) -> Self
[src]
impl From<String> for Error
[src]
impl From<TryFromIntError> for Error
[src]
fn from(e: TryFromIntError) -> Self
[src]
impl From<i32> for Error
[src]
Auto Trait Implementations
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Pointable for T
[src]
const ALIGN: usize
[src]
type Init = T
The type for initializers.
unsafe fn init(init: <T as Pointable>::Init) -> usize
[src]
unsafe fn deref<'a>(ptr: usize) -> &'a T
[src]
unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
[src]
unsafe fn drop(ptr: usize)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,