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

Struct Fs

backend/oracleobjectstorage/oracleobjectstorage.go:78–89  ·  view source on GitHub ↗

Fs represents a remote object storage server

Source from the content-addressed store, hash-verified

76
77// Fs represents a remote object storage server
78type Fs struct {
79 name string // name of this remote
80 root string // the path we are working on if any
81 opt Options // parsed config options
82 ci *fs.ConfigInfo // global config
83 features *fs.Features // optional features
84 srv *objectstorage.ObjectStorageClient // the connection to the object storage
85 rootBucket string // bucket part of root (if any)
86 rootDirectory string // directory part of root (if any)
87 cache *bucket.Cache // cache for bucket creation status
88 pacer *fs.Pacer // To pace the API calls
89}
90
91// NewFs Initialize backend
92func NewFs(ctx context.Context, name, root string, m configmap.Mapper) (fs.Fs, error) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected