diff options
author | edef <edef@edef.eu> | 2024-04-26T08·11+0000 |
---|---|---|
committer | edef <edef@edef.eu> | 2024-04-26T08·22+0000 |
commit | cab9c774b78aff674fa2f37cce87c9854fd6e1ac (patch) | |
tree | 5fa72d6f444fd7dfc83e2ed1f8cbc43db40c8f59 | |
parent | 6e41e0917e56dccd14d368ca638b2f2c47915985 (diff) |
chore(nix-compat/nar/wire): space Tag::Buf docs properly r/8017
Change-Id: If15b14b5328b9e7f85ea3fa7644d327dfb50e1a6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11523 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
-rw-r--r-- | tvix/nix-compat/src/nar/wire/tag.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/nix-compat/src/nar/wire/tag.rs b/tvix/nix-compat/src/nar/wire/tag.rs index 55b93f998541..4982a0d7079f 100644 --- a/tvix/nix-compat/src/nar/wire/tag.rs +++ b/tvix/nix-compat/src/nar/wire/tag.rs @@ -10,6 +10,7 @@ pub trait Tag: Sized { const MIN: usize; /// Minimal suitably sized buffer for reading the wire representation + /// /// HACK: This is a workaround for const generics limitations. type Buf: AsMut<[u8]> + Send; |