pub enum RouteLayerError {
EmbeddingError(EmbedderError),
IndexError(IndexError),
}
Variants§
EmbeddingError(EmbedderError)
IndexError(IndexError)
Trait Implementations§
source§impl Debug for RouteLayerError
impl Debug for RouteLayerError
source§impl Display for RouteLayerError
impl Display for RouteLayerError
source§impl Error for RouteLayerError
impl Error for RouteLayerError
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<EmbedderError> for RouteLayerError
impl From<EmbedderError> for RouteLayerError
source§fn from(source: EmbedderError) -> Self
fn from(source: EmbedderError) -> Self
Converts to this type from the input type.
source§impl From<IndexError> for RouteLayerError
impl From<IndexError> for RouteLayerError
source§fn from(source: IndexError) -> Self
fn from(source: IndexError) -> Self
Converts to this type from the input type.
source§impl From<RouteLayerError> for RouteLayerBuilderError
impl From<RouteLayerError> for RouteLayerBuilderError
source§fn from(source: RouteLayerError) -> Self
fn from(source: RouteLayerError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RouteLayerError
impl !RefUnwindSafe for RouteLayerError
impl Send for RouteLayerError
impl Sync for RouteLayerError
impl Unpin for RouteLayerError
impl !UnwindSafe for RouteLayerError
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