File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -136,6 +136,7 @@ impl Default for Retry {
136
136
#[ serde( rename_all = "camelCase" ) ]
137
137
#[ serde( try_from = "TargetVerifier" ) ]
138
138
pub struct Target {
139
+ pub name : String ,
139
140
#[ serde( flatten) ]
140
141
pub target : TargetType ,
141
142
#[ serde( default , rename = "repeat" ) ]
@@ -289,6 +290,7 @@ pub struct RepeatVerifier {
289
290
#[ derive( Debug , serde:: Deserialize ) ]
290
291
#[ serde( rename_all = "camelCase" ) ]
291
292
pub struct TargetVerifier {
293
+ pub name : String ,
292
294
#[ serde( flatten) ]
293
295
pub target : TargetType ,
294
296
#[ serde( default ) ]
@@ -325,6 +327,7 @@ impl TryFrom<TargetVerifier> for Target {
325
327
}
326
328
327
329
Ok ( Target {
330
+ name : value. name ,
328
331
target : value. target ,
329
332
timeout,
330
333
id : value. id ,
You can’t perform that action at this time.
0 commit comments