ENUM
TargetQuery
Contents
swift
public enum TargetQuery: Codable, Equatable, SendableQueries for matching against a target in manifests.
Cases
named(_:)
swift
case named(String)Match targets with the given name.
tagged(_:)
swift
case tagged(String)Match targets with the given metadata tag.
Methods
init(from:)
swift
public init(from decoder: Decoder) throwsParameters
| Name | Description |
|---|---|
| decoder | The decoder to read data from. |
encode(to:)
swift
public func encode(to encoder: Encoder) throwsParameters
| Name | Description |
|---|---|
| encoder | The encoder to write data to. |
