File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ pub struct ImageIndex {
54
54
/// This REQUIRED property contains a list of manifests for specific
55
55
/// platforms. While this property MUST be present, the size of
56
56
/// the array MAY be zero.
57
- #[ getset( get = "pub" , set = "pub" ) ]
57
+ #[ getset( get_mut = "pub" , get = "pub" , set = "pub" ) ]
58
58
manifests : Vec < Descriptor > ,
59
59
/// This OPTIONAL property specifies a descriptor of another manifest. This value, used by the
60
60
/// referrers API, indicates a relationship to the specified manifest.
@@ -65,7 +65,7 @@ pub struct ImageIndex {
65
65
/// This OPTIONAL property contains arbitrary metadata for the image
66
66
/// index. This OPTIONAL property MUST use the annotation rules.
67
67
#[ serde( skip_serializing_if = "Option::is_none" ) ]
68
- #[ getset( get = "pub" , set = "pub" ) ]
68
+ #[ getset( get_mut = "pub" , get = "pub" , set = "pub" ) ]
69
69
#[ builder( default ) ]
70
70
annotations : Option < HashMap < String , String > > ,
71
71
}
You can’t perform that action at this time.
0 commit comments