Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions _skeptic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ serde_repr = "0.1"
serde_test = "1.0"
serde-transcode = "1.0"
serde_yaml = "0.8"
serde_bytes = "0.11"
skeptic = "0.13"
void = "1.0"
12 changes: 12 additions & 0 deletions _src/field-attrs.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,18 @@
`$module::serialize` as the `serialize_with` function and
`$module::deserialize` as the `deserialize_with` function.

```rust
// For some iter types custom module might significantly improve performance,
// for instance `Vec<u8>` ser/deserialized about 10x times faster with serde_bytes
# use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize)]
struct Fast {
#[serde(with = "serde_bytes")]
buf: Vec<u8>
}
# fn main() {}
```

- ##### `#[serde(borrow)]` and `#[serde(borrow = "'a + 'b + ...")]` {#borrow}

Borrow data for this field from the deserializer by using zero-copy
Expand Down