1 2 3 4 5 6
use crate::{FileObject, ObjectStore}; pub enum ListObjectsResult { Buckets(Vec<ObjectStore>), FileObjects(Vec<FileObject>), }