LibraryType
The different types of a library product.
Product.swift:85Library-LibraryType.mdenum LibraryType
Enumeration Cases
case dynamic
A dynamically linked library.
case `static`
A statically linked library.
Hashing
hash(into:)
hashValue
Operator Functions
!=(_:_:)
Creating a Value
init(rawValue:)
Accessing the Raw Value
rawValue
RawValue
See also
let targets: [String]
The names of the targets in this product.
let type: Product.Library.LibraryType?
The type of the library.
Citizens in PackageDescription
Conformances
protocol Equatable
A type that can be compared for value equality.
protocol Hashable
A type that can be hashed into a
Hasher
to produce an integer hash value.protocol RawRepresentable<RawValue>
A type that can be converted to and from an associated raw value.
Type members
init?(rawValue: String
) Creates a new instance with the specified raw value.
Type features
static func != (lhs: Self, rhs: Self
) -> Bool Returns a Boolean value indicating whether two values are not equal.