(src fs.ObjectInfo, nonce nonce)
| 1147 | } |
| 1148 | |
| 1149 | func (f *Fs) newObjectInfo(src fs.ObjectInfo, nonce nonce) *ObjectInfo { |
| 1150 | return &ObjectInfo{ |
| 1151 | ObjectInfo: src, |
| 1152 | f: f, |
| 1153 | nonce: nonce, |
| 1154 | } |
| 1155 | } |
| 1156 | |
| 1157 | // Fs returns read only access to the Fs that this object is part of |
| 1158 | func (o *ObjectInfo) Fs() fs.Info { |
no outgoing calls