Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ea6f9ce
refactor(buf): whole buf
George-Miao Dec 1, 2025
34d9cf0
fix(driver): adopt new buf
George-Miao Dec 1, 2025
e2fd708
fix(buf): typo
George-Miao Dec 1, 2025
4a9cc7b
fix(buf): slice iter oob
George-Miao Dec 1, 2025
b2b6071
fix(driver): typo
George-Miao Dec 1, 2025
beecde6
fix(buf): inconsistent doc comment
George-Miao Dec 1, 2025
ed00564
fix(buf): smallvec impl
George-Miao Dec 1, 2025
43482c7
fix(driver): typo
George-Miao Dec 1, 2025
e86f0de
feat(buf): make Uninit<T> deref to [MaybeUninit<u8>]
George-Miao Dec 1, 2025
af9e49a
fix(driver): iocp
George-Miao Dec 1, 2025
e988980
fix(driver): clippy
George-Miao Dec 1, 2025
777189c
fix(driver): from_slice is never used
George-Miao Dec 1, 2025
8188e70
fix: fmt
George-Miao Dec 1, 2025
d0a4b36
fix: tests
George-Miao Dec 2, 2025
7f29539
fix(driver): aio fn requires unsafe block
George-Miao Dec 2, 2025
968b2a7
feat(buf): make slice begin at uninit possible
George-Miao Dec 2, 2025
cb5fa2f
feat(driver): use WSABUF from windows_sys
George-Miao Dec 2, 2025
72af001
fix(buf): slice
George-Miao Dec 2, 2025
48e35a9
docs(buf): fix for IoBufferMut::len
George-Miao Dec 2, 2025
be81349
feat(buf): doc test
George-Miao Dec 2, 2025
63f288f
refactor(buf): rename to into_raw_parts
George-Miao Dec 2, 2025
c7b1661
fix: grammar
George-Miao Dec 2, 2025
a249648
fix(buf): capacity of vec slice
George-Miao Dec 2, 2025
d39e8da
Merge branch 'master' into refactor/io
George-Miao Dec 2, 2025
472e43a
refactor(driver): remove SysSliceMut
George-Miao Dec 3, 2025
266ccb4
refactor: make `IoBuf{,mut}` safe
George-Miao Dec 4, 2025
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
Prev Previous commit
Next Next commit
docs(buf): fix for IoBufferMut::len
Co-authored-by: Copilot <[email protected]>
  • Loading branch information
George-Miao and Copilot committed Dec 2, 2025
commit 48e35a9fe50df1702c06d54af38434c20b596df6
2 changes: 1 addition & 1 deletion compio-buf/src/io_buffer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ impl IoBufferMut {
self.ptr
}

/// Get the initialized length of the buffer.
/// Get the total length of the buffer (may include both initialized and uninitialized bytes).
pub fn len(&self) -> usize {
self.len
}
Expand Down