Error Set ReadFileError [src]

Errors

AccessDenied

Known to be possible when:

  • Unable to read from disconnected virtual com port (Windows)
BrokenPipe
ConnectionResetByPeer

The specified network name is no longer available.

LockViolation

Unable to read file due to lock.

NotOpenForReading
OperationAborted
Unexpected

Source

pub const ReadFileError = error{ BrokenPipe, /// The specified network name is no longer available. ConnectionResetByPeer, OperationAborted, /// Unable to read file due to lock. LockViolation, /// Known to be possible when: /// - Unable to read from disconnected virtual com port (Windows) AccessDenied, NotOpenForReading, Unexpected, }