MCPcopy
hub / github.com/rclone/rclone / Object

Struct Object

backend/mailru/mailru.go:1927–1934  ·  view source on GitHub ↗

Object describes a mailru object

Source from the content-addressed store, hash-verified

1925
1926// Object describes a mailru object
1927type Object struct {
1928 fs *Fs // what this object is part of
1929 remote string // The remote path
1930 hasMetaData bool // whether info below has been set
1931 size int64 // Bytes in the object
1932 modTime time.Time // Modified time of the object
1933 mrHash []byte // Mail.ru flavored SHA1 hash of the object
1934}
1935
1936// NewObject finds an Object at the remote.
1937// If object can't be found it fails with fs.ErrorObjectNotFound

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected