Error Set WriteFileError [src]

Errors

AccessDenied

Known to be possible when:

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

The specified network name is no longer available.

LockViolation

The process cannot access the file because another process has locked a portion of the file.

NotOpenForWriting
OperationAborted
SystemResources
Unexpected

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, }