1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! Storage backend implementations
//!
//! This module defines the trait that all storage backends must implement,
//! and provides implementations for various cloud storage providers.
use crateResult;
use crate;
use async_trait;
/// Trait that all storage backends must implement
///
/// This trait provides a common interface for listing files from different
/// storage backends (Dropbox, S3, local filesystem, etc.).
///
/// Backend implementations handle the specifics of connecting to storage
/// and converting OpenDAL entries to our FileMetadata structure.
// Backend implementations