| 25 | return std::unexpected(Error(ErrorCode::kDeviceNotSupported)); |
| 26 | } |
| 27 | auto Seek(File*, int64_t, SeekWhence) -> Expected<uint64_t> override { |
| 28 | return std::unexpected(Error(ErrorCode::kDeviceNotSupported)); |
| 29 | } |
| 30 | auto Close(File*) -> Expected<void> override { return {}; } |
| 31 | auto ReadDir(File*, DirEntry*, size_t) -> Expected<size_t> override { |
| 32 | return std::unexpected(Error(ErrorCode::kDeviceNotSupported)); |