Fill in tracking issue number for read_exact_at/write_all_at
This commit is contained in:
parent
7015dfd1b9
commit
73166f751b
1 changed files with 2 additions and 2 deletions
|
|
@ -109,7 +109,7 @@ pub trait FileExt {
|
|||
/// Ok(())
|
||||
/// }
|
||||
/// ```
|
||||
#[unstable(feature = "rw_exact_all_at", issue = "0")]
|
||||
#[unstable(feature = "rw_exact_all_at", issue = "51984")]
|
||||
fn read_exact_at(&self, mut buf: &mut [u8], mut offset: u64) -> io::Result<()> {
|
||||
while !buf.is_empty() {
|
||||
match self.read_at(buf, offset) {
|
||||
|
|
@ -204,7 +204,7 @@ pub trait FileExt {
|
|||
/// Ok(())
|
||||
/// }
|
||||
/// ```
|
||||
#[unstable(feature = "rw_exact_all_at", issue = "0")]
|
||||
#[unstable(feature = "rw_exact_all_at", issue = "51984")]
|
||||
fn write_all_at(&self, mut buf: &[u8], mut offset: u64) -> io::Result<()> {
|
||||
while !buf.is_empty() {
|
||||
match self.write_at(buf, offset) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue