Error Set WriteFileError [src]
Errors
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,
Unexpected,
}