Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions doc/docs/content/docs/dx/dir-structure/guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ dir.write(path)?;

Yes, you can use serde types as well. You need to tell the library what format to use for serialization and deserialization.

This is an example using JSON, but TOML, YAML, and RON are also supported.
This is an example using JSON, but TOML, YAML, and RON are also supported, behind the respective features.

<Mermaid
chart={`
Expand Down Expand Up @@ -408,6 +408,7 @@ dir.write(path)?;
## !!steps Or even large directories?

When dealing with large directories, you can use deferred (lazy) reading.
This can be achieved with `DeferredRead`.

<Mermaid
chart={`
Expand Down Expand Up @@ -479,7 +480,7 @@ dir.write(path)?;
```
## !!steps And if we want to cache the read values?

The library exposes a `DeferredReadOrOwn` type, which allows you to cache the read values.
The library also exposes a `DeferredReadOrOwn` type, which allows you to cache the read values.

<Mermaid
chart={`
Expand Down Expand Up @@ -1396,4 +1397,3 @@ assert!(v.is_dirty());

</ScrollyCoding>


Loading