about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc
diff options
context:
space:
mode:
authorJacob Pratt <jacob@jhpratt.dev>2024-07-13 00:24:35 -0400
committerGitHub <noreply@github.com>2024-07-13 00:24:35 -0400
commit68ec9c1992c8c72c2c1ec4c8903d364192aa7141 (patch)
treeadd5672c77d74553d2e6002f7f52de9fb5bf1845 /compiler/rustc_codegen_gcc
parentcb1ccc184265f0988cf22fc8329b97a3a32ba8f6 (diff)
parenta45c12cf0f994409309b8099bf5de52b392fb061 (diff)
downloadrust-68ec9c1992c8c72c2c1ec4c8903d364192aa7141.tar.gz
rust-68ec9c1992c8c72c2c1ec4c8903d364192aa7141.zip
Rollup merge of #127661 - eduardosm:stabilize-io_slice_advance, r=cuviper
Stabilize io_slice_advance

Closes https://github.com/rust-lang/rust/issues/62726 (FCP completed)

Stabilized API:

```rust
impl<'a> IoSlice<'a> {
    pub fn advance(&mut self, n: usize);
    pub fn advance_slices(bufs: &mut &mut [IoSlice<'a>], n: usize);
}

impl<'a> IoSliceMut<'a> {
    pub fn advance(&mut self, n: usize);
    pub fn advance_slices(bufs: &mut &mut [IoSliceMut<'a>], n: usize);
}
```
Diffstat (limited to 'compiler/rustc_codegen_gcc')
0 files changed, 0 insertions, 0 deletions