We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e5d7a8a + a707d30 commit 2851be4Copy full SHA for 2851be4
src/filesystem/files.rs
@@ -190,7 +190,7 @@ impl<
190
if buf.is_empty() {
191
Ok(0)
192
} else {
193
- self.read(buf)
+ File::read(self, buf)
194
}
195
196
@@ -207,7 +207,7 @@ impl<
207
208
209
210
- self.write(buf)?;
+ File::write(self, buf)?;
211
Ok(buf.len())
212
213
0 commit comments