DriverReader reads an object from the blob.
| 22 | |
| 23 | // DriverReader reads an object from the blob. |
| 24 | type DriverReader interface { |
| 25 | io.ReadCloser |
| 26 | |
| 27 | // Attributes returns a subset of attributes about the blob. |
| 28 | // The portable type will not modify the returned ReaderAttributes. |
| 29 | Attributes() *ReaderAttributes |
| 30 | } |
| 31 | |
| 32 | // DriverWriter writes an object to the blob. |
| 33 | type DriverWriter interface { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…