Error Set WriteFileError [src]
Errors
Known to be possible when:
- Unable to write to disconnected virtual com port (Windows)
The specified network name is no longer available.
The process cannot access the file because another process has locked a portion of the file.
Source
pub const WriteFileError = error{
SystemResources,
OperationAborted,
BrokenPipe,
NotOpenForWriting,
/// The process cannot access the file because another process has locked
/// a portion of the file.
LockViolation,
/// The specified network name is no longer available.
ConnectionResetByPeer,
/// Known to be possible when:
/// - Unable to write to disconnected virtual com port (Windows)
AccessDenied,
Unexpected,
}