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/RtmpaWgK9C/datom_store_1a6b427be03c.
print(store)
#>
#> ── datom local store component
#> • Path: /tmp/RtmpaWgK9C/datom_store_1a6b427be03c
#> • Validated: TRUE
unlink(tmp, recursive = TRUE)