Skip to content

Commit b5d1c6b

Browse files
authored
feat: Derive Debug and Clone on PyObjectStore (#606)
1 parent 3de74c0 commit b5d1c6b

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

pyo3-object_store/src/store.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ use crate::{PyAzureStore, PyGCSStore, PyHttpStore, PyLocalStore, PyMemoryStore,
1414
///
1515
/// This will only accept ObjectStore instances created from the same library. See
1616
/// [register_store_module][crate::register_store_module].
17+
#[derive(Debug, Clone)]
1718
pub struct PyObjectStore(Arc<dyn ObjectStore>);
1819

1920
impl<'py> FromPyObject<'_, 'py> for PyObjectStore {

0 commit comments

Comments
 (0)