Error Module
Rust module: cuvs::error
Source: rust/cuvs/src/error.rs
Low-level error handling shared by every cuVS module.
check_cuvs turns a raw cuvsError_t status into a [LibraryError], which
each module’s error type wraps via #[from].
LibraryError
A failure reported by the cuVS C library.
Carries the message captured from cuvsGetLastErrorText at the point of
failure. Every module’s error type wraps this via #[from].
Source: rust/cuvs/src/error.rs:19