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 {
5454 /// This REQUIRED property contains a list of manifests for specific
5555 /// platforms. While this property MUST be present, the size of
5656 /// the array MAY be zero.
57- #[ getset( get = "pub" , set = "pub" ) ]
57+ #[ getset( get_mut = "pub" , get = "pub" , set = "pub" ) ]
5858 manifests : Vec < Descriptor > ,
5959 /// This OPTIONAL property specifies a descriptor of another manifest. This value, used by the
6060 /// referrers API, indicates a relationship to the specified manifest.
@@ -65,7 +65,7 @@ pub struct ImageIndex {
6565 /// This OPTIONAL property contains arbitrary metadata for the image
6666 /// index. This OPTIONAL property MUST use the annotation rules.
6767 #[ serde( skip_serializing_if = "Option::is_none" ) ]
68- #[ getset( get = "pub" , set = "pub" ) ]
68+ #[ getset( get_mut = "pub" , get = "pub" , set = "pub" ) ]
6969 #[ builder( default ) ]
7070 annotations : Option < HashMap < String , String > > ,
7171}
You can’t perform that action at this time.
0 commit comments