We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbafb6c commit e804adfCopy full SHA for e804adf
rust/bufferfish-core/src/lib.rs
@@ -47,9 +47,12 @@ impl std::error::Error for BufferfishError {
47
}
48
49
50
-/// A wrapper around a `Cursor<Vec<u8>>` that provides a simple API for reading
51
-/// and writing bytes. This is meant to be used with its companion library in
52
-/// TypeScript to provide consistent encoding and decoding interop.
+/// A wrapper around a `Cursor<Vec<u8>>` providing an API
+/// for encoding and decoding binary data.
+///
53
+/// This is meant to be used with its companion library in
54
+/// TypeScript to provide consistent encoding and decoding
55
+/// interop.
56
#[derive(Debug, Default)]
57
pub struct Bufferfish {
58
inner: Cursor<Vec<u8>>,
0 commit comments