mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
fix clipy warnings
This commit is contained in:
parent
74a1f88d88
commit
1647ca3c1f
5 changed files with 10 additions and 19 deletions
|
@ -6,10 +6,7 @@ pub struct SnapshotHandler;
|
|||
#[async_trait::async_trait]
|
||||
impl BatchHandler for SnapshotHandler {
|
||||
fn accept(&self, batch: &Batch) -> bool {
|
||||
match batch.content {
|
||||
BatchContent::Snapshot(_) => true,
|
||||
_ => false,
|
||||
}
|
||||
matches!(batch.content, BatchContent::Snapshot(_))
|
||||
}
|
||||
|
||||
async fn process_batch(&self, batch: Batch) -> Batch {
|
||||
|
@ -25,7 +22,5 @@ impl BatchHandler for SnapshotHandler {
|
|||
Batch::empty()
|
||||
}
|
||||
|
||||
async fn finish(&self, _: &Batch) {
|
||||
()
|
||||
}
|
||||
async fn finish(&self, _: &Batch) {}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue