lakestream 0.0.3

Portable file-utility for object-stores
Documentation
pub(crate) mod api;
pub(crate) mod base;
pub(crate) mod default;
pub(crate) mod error;
pub(crate) mod http;
pub(crate) mod localfs;
pub(crate) mod s3;
pub(crate) mod utils;

pub use api::object_store_handler::{ObjectStoreBackend, ObjectStoreHandler};
pub use base::callback_wrapper::{
    BinaryCallbackWrapper, CallbackItem, CallbackWrapper,
};
pub use base::config::Config;
pub use base::file_object::{FileObject, FileObjectVec};
pub use base::filters::FileObjectFilter;
pub use base::list_objects_result::ListObjectsResult;
pub use base::object_store::{ObjectStore, ObjectStoreTrait, ObjectStoreVec};
// re-export all defaults
pub use default::*;
pub use error::LakestreamError;