DoxigAlpha

WriteFileError

Source

Implementation

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