MCPcopy
hub / github.com/rclone/rclone / Fs

Struct Fs

backend/mega/mega.go:146–156  ·  view source on GitHub ↗

Fs represents a remote mega

Source from the content-addressed store, hash-verified

144
145// Fs represents a remote mega
146type Fs struct {
147 name string // name of this remote
148 root string // the path we are working on
149 opt Options // parsed config options
150 features *fs.Features // optional features
151 srv *mega.Mega // the connection to the server
152 pacer *fs.Pacer // pacer for API calls
153 rootNodeMu sync.Mutex // mutex for _rootNode
154 _rootNode *mega.Node // root node - call findRoot to use this
155 mkdirMu sync.Mutex // used to serialize calls to mkdir / rmdir
156}
157
158// Object describes a mega object
159//

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected