Object describes a mailru object
| 1925 | |
| 1926 | // Object describes a mailru object |
| 1927 | type 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 |
nothing calls this directly
no outgoing calls
no test coverage detected