某個層面套用的規則屬性資訊。
成員
attr
struct rule_attributes.attr
rule
函式的 attrs
字典鍵和值。查看使用範例。
執行檔
struct rule_attributes.executable
struct
包含在標籤類型屬性中定義的執行檔,並標示為 executable=True
。struct 欄位對應的是屬性名稱。結構體中的每個值都是 File
或 None
。如果規則中未指定選用屬性,則對應的結構體值為 None
。如果標籤類型未標示為 executable=True
,則不會產生相對應的結構體欄位。查看使用範例。檔案
struct rule_attributes.file
allow_single_file
的 struct
。struct 欄位對應的是屬性名稱。結構體值一律為 File
或 None
。如果規則中未指定選用屬性,則對應的結構值會是 None
。如果標籤類型未標示為 allow_single_file
,系統就不會產生對應的 struct 欄位。這是以下項目的捷徑:list(ctx.attr.<ATTR>.files)[0]
file
存取依附元件的 (單一) 預設輸出內容。查看使用範例。
檔案
struct rule_attributes.files
struct
包含在 label 或 label list 型別屬性中定義的檔案。結構體欄位會對應至屬性名稱。結構體值是 File
的 list
。這是以下項目的捷徑:[f for t in ctx.attr.<ATTR> for f in t.files]
files
存取依附元件的 預設輸出內容。查看使用範例。
kind
string rule_attributes.kind