Skip to content

Translation 🌍

이 페이지를 번역하거나 기존 번역을 개선할 수 있습니다.

기여

ENUM

TargetQuery

Contents

swift
public enum TargetQuery: Codable, Equatable, Sendable

Queries 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) throws

Parameters

NameDescription
decoderThe decoder to read data from.

encode(to:)

swift
public func encode(to encoder: Encoder) throws

Parameters

NameDescription
encoderThe encoder to write data to.

Released under the MIT License.