Enumerationswift-package-manager 6.0.1Workspace
CheckoutState
A checkout state represents the current state of a repository.
enum CheckoutState
A state will always has a revision. It can also have a branch or a version but not both.
A checkout state represents the current state of a repository.
enum CheckoutState
A state will always has a revision. It can also have a branch or a version but not both.
import Workspace
case revision(_: Revision)
case version(_: Version, revision: Revision)
case branch(name: String, revision: Revision)
protocol Copyable
A type whose values can be implicitly or explicitly copied.
protocol CustomDebugStringConvertible
A type with a customized textual representation suitable for debugging purposes.
protocol CustomStringConvertible
A type with a customized textual representation.
protocol Equatable
A type that can be compared for value equality.
protocol Escapable
protocol Hashable : Equatable
A type that can be hashed into a Hasher
to produce an integer hash value.
var debugDescription: String { get }
var description: String { get }
static func != (lhs: Self, rhs: Self) -> Bool
Returns a Boolean value indicating whether two values are not equal.