pub enum DataDictionaryError {
DeserializeError(Error),
IoError(Error),
ParseError(ParseError),
Missing {
entry_type: Arc<str>,
name: Arc<str>,
},
InvalidVersionType {
version_type: Arc<str>,
},
ParseIntError(ParseIntError),
}Expand description
TODO
Variants§
DeserializeError(Error)
IoError(Error)
ParseError(ParseError)
Missing
InvalidVersionType
ParseIntError(ParseIntError)
Trait Implementations§
Source§impl Debug for DataDictionaryError
impl Debug for DataDictionaryError
Source§impl From<Error> for DataDictionaryError
impl From<Error> for DataDictionaryError
Source§impl From<Error> for DataDictionaryError
impl From<Error> for DataDictionaryError
Source§impl From<ParseError> for DataDictionaryError
impl From<ParseError> for DataDictionaryError
Source§fn from(error: ParseError) -> Self
fn from(error: ParseError) -> Self
Converts to this type from the input type.
Source§impl From<ParseIntError> for DataDictionaryError
impl From<ParseIntError> for DataDictionaryError
Source§fn from(error: ParseIntError) -> Self
fn from(error: ParseIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for DataDictionaryError
impl !UnwindSafe for DataDictionaryError
impl Freeze for DataDictionaryError
impl Send for DataDictionaryError
impl Sync for DataDictionaryError
impl Unpin for DataDictionaryError
impl UnsafeUnpin for DataDictionaryError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more