Closed nrath-js closed 2 weeks ago
The getattr method in examples/hello.rs defines:
getattr
examples/hello.rs
fn getattr(&mut self, _req: &Request, ino: u64, _fh: Option<u64>, reply: ReplyAttr) {
However, the Filesystem trait defines it as:
Filesystem
fn getattr(&mut self, _req: &Request<'_>, _ino: u64, reply: ReplyAttr)
i.e., no _fh parameter.
Duplicate of #299
The
getattr
method inexamples/hello.rs
defines:However, the
Filesystem
trait defines it as:i.e., no _fh parameter.