2
2
mirror of https://github.com/octoleo/restic.git synced 2024-11-25 22:27:35 +00:00

fuse: add missing type assertion for optional interfaces

This commit is contained in:
Michael Eischer 2024-09-09 22:37:08 +02:00
parent 6ec2b62ec5
commit e9940f39dc
3 changed files with 8 additions and 0 deletions

View File

@ -20,6 +20,8 @@ import (
// Statically ensure that *dir implement those interface
var _ = fs.HandleReadDirAller(&dir{})
var _ = fs.NodeGetxattrer(&dir{})
var _ = fs.NodeListxattrer(&dir{})
var _ = fs.NodeStringLookuper(&dir{})
type dir struct {

View File

@ -12,6 +12,8 @@ import (
)
// Statically ensure that *link implements the given interface
var _ = fs.NodeGetxattrer(&link{})
var _ = fs.NodeListxattrer(&link{})
var _ = fs.NodeReadlinker(&link{})
type link struct {

View File

@ -7,9 +7,13 @@ import (
"context"
"github.com/anacrolix/fuse"
"github.com/anacrolix/fuse/fs"
"github.com/restic/restic/internal/restic"
)
// Statically ensure that *other implements the given interface
var _ = fs.NodeReadlinker(&other{})
type other struct {
root *Root
node *restic.Node