pub enum GraphArError {
Show 17 variants
Io(Error),
Yaml(Error),
Json(Error),
Arrow(ArrowError),
Parquet(ParquetError),
Orc(OrcError),
ObjectStore(Error),
VertexTypeNotFound(String),
EdgeTypeNotFound {
src: String,
edge: String,
dst: String,
},
PropertyNotFound(String),
PropertyGroupNotFound(Vec<String>),
InvalidAdjListType {
ordered: String,
aligned_by: String,
},
AdjListTypeNotConfigured(String),
UnsupportedFileType(String),
ChunkOutOfRange(u64, u64),
InvalidVersion(String),
Other(String),
}Variants§
Io(Error)
Yaml(Error)
Json(Error)
Arrow(ArrowError)
Parquet(ParquetError)
Orc(OrcError)
ObjectStore(Error)
VertexTypeNotFound(String)
EdgeTypeNotFound
PropertyNotFound(String)
PropertyGroupNotFound(Vec<String>)
InvalidAdjListType
AdjListTypeNotConfigured(String)
UnsupportedFileType(String)
ChunkOutOfRange(u64, u64)
InvalidVersion(String)
Other(String)
Trait Implementations§
Source§impl Debug for GraphArError
impl Debug for GraphArError
Source§impl Display for GraphArError
impl Display for GraphArError
Source§impl Error for GraphArError
impl Error for GraphArError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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<ArrowError> for GraphArError
impl From<ArrowError> for GraphArError
Source§fn from(source: ArrowError) -> Self
fn from(source: ArrowError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for GraphArError
impl From<Error> for GraphArError
Source§impl From<Error> for GraphArError
impl From<Error> for GraphArError
Source§impl From<Error> for GraphArError
impl From<Error> for GraphArError
Source§impl From<Error> for GraphArError
impl From<Error> for GraphArError
Source§impl From<OrcError> for GraphArError
impl From<OrcError> for GraphArError
Source§impl From<ParquetError> for GraphArError
impl From<ParquetError> for GraphArError
Source§fn from(source: ParquetError) -> Self
fn from(source: ParquetError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for GraphArError
impl !UnwindSafe for GraphArError
impl Freeze for GraphArError
impl Send for GraphArError
impl Sync for GraphArError
impl Unpin for GraphArError
impl UnsafeUnpin for GraphArError
Blanket Implementations§
Source§impl<T> AsErrorSource for Twhere
T: Error + 'static,
impl<T> AsErrorSource for Twhere
T: Error + 'static,
Source§fn as_error_source(&self) -> &(dyn Error + 'static)
fn as_error_source(&self) -> &(dyn Error + 'static)
For maximum effectiveness, this needs to be called as a method
to benefit from Rust’s automatic dereferencing of method
receivers.
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more