ObjectInfo describes a wrapped fs.ObjectInfo for being the source This encrypts the remote name and adjusts the size
| 1141 | // |
| 1142 | // This encrypts the remote name and adjusts the size |
| 1143 | type ObjectInfo struct { |
| 1144 | fs.ObjectInfo |
| 1145 | f *Fs |
| 1146 | nonce nonce |
| 1147 | } |
| 1148 | |
| 1149 | func (f *Fs) newObjectInfo(src fs.ObjectInfo, nonce nonce) *ObjectInfo { |
| 1150 | return &ObjectInfo{ |
nothing calls this directly
no outgoing calls
no test coverage detected