pub enum GraphLoaderError {
Show 20 variants
EmptyCollections,
GraphNotFound,
TlsCertError(String),
RequestBuilderError(String),
NoDatabaseServers,
Utf8Error(String),
RequestError(Error),
ArangoDBError(i32, String, StatusCode),
ParseError(String),
InvalidStatusCode(StatusCode),
GraphNotObject,
NoEdgeDefinitions,
EdgeDefinitionsNotArray,
CollectionNotString,
FromNotArray,
FromCollectionNotString,
ToNotArray,
ToCollectionNotString,
JsonParseError(String),
Other(String),
}
Variants§
EmptyCollections
GraphNotFound
TlsCertError(String)
RequestBuilderError(String)
NoDatabaseServers
Utf8Error(String)
RequestError(Error)
ArangoDBError(i32, String, StatusCode)
ParseError(String)
InvalidStatusCode(StatusCode)
GraphNotObject
NoEdgeDefinitions
EdgeDefinitionsNotArray
CollectionNotString
FromNotArray
FromCollectionNotString
ToNotArray
ToCollectionNotString
JsonParseError(String)
Other(String)
Trait Implementations§
source§impl Debug for GraphLoaderError
impl Debug for GraphLoaderError
source§impl Display for GraphLoaderError
impl Display for GraphLoaderError
source§impl Error for GraphLoaderError
impl Error for GraphLoaderError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<Error> for GraphLoaderError
impl From<Error> for GraphLoaderError
Auto Trait Implementations§
impl Freeze for GraphLoaderError
impl !RefUnwindSafe for GraphLoaderError
impl Send for GraphLoaderError
impl Sync for GraphLoaderError
impl Unpin for GraphLoaderError
impl !UnwindSafe for GraphLoaderError
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