Displays store configuration.
Usage
# S3 method for class 'datom_store_local'
print(x, ...)Examples
tmp <- tempfile("datom_store_")
store <- datom_store_local(path = tmp, validate = TRUE)
#> ℹ Created store directory /tmp/Rtmp0YCcPh/datom_store_1a31f09a977.
print(store)
#>
#> ── datom local store component
#> • Path: /tmp/Rtmp0YCcPh/datom_store_1a31f09a977
#> • Validated: TRUE
unlink(tmp, recursive = TRUE)