Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
reztilop
/
colibri.qdrant
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
colibri.qdrant
/
lib
/
common
/
cancel
/
src
/
lib.rs
Gouzi Mohaled
Ajout du dossier lib
84d2a97
5 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
267 Bytes
pub
mod
blocking;
pub
mod
future;
pub
use
tokio_util::sync::{CancellationToken, DropGuard};
#[derive(Debug, thiserror::Error)]
pub
enum
Error
{
#[error(transparent)]
Join
(
#[from]
tokio::task::JoinError),
#[error(
"task was cancelled"
)]
Cancelled,
}