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

Struct Fs

backend/sugarsync/sugarsync.go:207–218  ·  view source on GitHub ↗

Fs represents a remote sugarsync

Source from the content-addressed store, hash-verified

205
206// Fs represents a remote sugarsync
207type Fs struct {
208 name string // name of this remote
209 root string // the path we are working on
210 opt Options // parsed options
211 features *fs.Features // optional features
212 srv *rest.Client // the connection to the server
213 dirCache *dircache.DirCache // Map of directory path to directory id
214 pacer *fs.Pacer // pacer for API calls
215 m configmap.Mapper // config file access
216 authMu sync.Mutex // used when doing authorization
217 authExpiry time.Time // time the authorization expires
218}
219
220// Object describes a sugarsync object
221//

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected