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 {
136136#[ serde( rename_all = "camelCase" ) ]
137137#[ serde( try_from = "TargetVerifier" ) ]
138138pub struct Target {
139+ pub name : String ,
139140 #[ serde( flatten) ]
140141 pub target : TargetType ,
141142 #[ serde( default , rename = "repeat" ) ]
@@ -289,6 +290,7 @@ pub struct RepeatVerifier {
289290#[ derive( Debug , serde:: Deserialize ) ]
290291#[ serde( rename_all = "camelCase" ) ]
291292pub struct TargetVerifier {
293+ pub name : String ,
292294 #[ serde( flatten) ]
293295 pub target : TargetType ,
294296 #[ serde( default ) ]
@@ -325,6 +327,7 @@ impl TryFrom<TargetVerifier> for Target {
325327 }
326328
327329 Ok ( Target {
330+ name : value. name ,
328331 target : value. target ,
329332 timeout,
330333 id : value. id ,
You can’t perform that action at this time.
0 commit comments