We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a325c6 commit fc40c0cCopy full SHA for fc40c0c
src/libstd/io/fs.rs
@@ -237,7 +237,7 @@ impl File {
237
}
238
239
/// Queries information about the underlying file.
240
- pub fn stat(&mut self) -> IoResult<FileStat> {
+ pub fn stat(&self) -> IoResult<FileStat> {
241
self.fd.fstat()
242
.update_err("couldn't fstat file", |e|
243
format!("{}; path={}", e, self.path.display()))
src/libstd/sys/windows/fs.rs
@@ -131,7 +131,7 @@ impl FileDesc {
131
return ret;
132
133
134
- pub fn fstat(&mut self) -> IoResult<io::FileStat> {
+ pub fn fstat(&self) -> IoResult<io::FileStat> {
135
let mut stat: libc::stat = unsafe { mem::zeroed() };
136
match unsafe { libc::fstat(self.fd(), &mut stat) } {
137
0 => Ok(mkstat(&stat)),
0 commit comments