Enumerationtuist.filesystem 0.7.9FileSystem
FileSystemError
FileSystem.swift:14enum FileSystemError
enum FileSystemError
import FileSystem
case moveNotFound(from: AbsolutePath, to: AbsolutePath)
case makeDirectoryAbsentParent(AbsolutePath)
case readInvalidEncoding(String.Encoding, path: AbsolutePath)
case cantEncodeText(String, String.Encoding)
case replacingItemAbsent(replacingPath: AbsolutePath, replacedPath: AbsolutePath)
case copiedItemAbsent(copiedPath: AbsolutePath, intoPath: AbsolutePath)
case absentSymbolicLink(AbsolutePath)
protocol CustomStringConvertible
A type with a customized textual representation.
protocol Equatable
A type that can be compared for value equality.
protocol Error : Sendable
A type representing an error value that can be thrown.
protocol Sendable
var description: String { get }
var localizedDescription: String { get }
Retrieve the localized description for this error.
static func != (lhs: Self, rhs: Self) -> Bool
Returns a Boolean value indicating whether two values are not equal.