@@ -80,7 +80,7 @@ pub struct MgrMetadata {
80
80
pub os : String ,
81
81
// other metadata not captured through the above attributes
82
82
#[ serde( flatten) ]
83
- other_meta : Option < HashMap < String , String > > ,
83
+ pub other_meta : Option < HashMap < String , String > > ,
84
84
}
85
85
86
86
#[ derive( Deserialize , Debug , Clone ) ]
@@ -184,7 +184,7 @@ pub struct OsdMetadata {
184
184
pub objectstore_meta : ObjectStoreMeta ,
185
185
// other metadata not captured through the above attributes
186
186
#[ serde( flatten) ]
187
- other_meta : Option < HashMap < String , String > > ,
187
+ pub other_meta : Option < HashMap < String , String > > ,
188
188
}
189
189
190
190
#[ derive( Deserialize , Debug , Clone ) ]
@@ -223,7 +223,7 @@ pub struct PgSummary {
223
223
pub num_keys_recovered : Option < u64 > ,
224
224
// other metadata not captured through the above attributes
225
225
#[ serde( flatten) ]
226
- other_meta : Option < HashMap < String , String > > ,
226
+ pub other_meta : Option < HashMap < String , String > > ,
227
227
}
228
228
229
229
#[ derive( Deserialize , Debug , Clone ) ]
@@ -290,9 +290,9 @@ pub enum ExtraProbePeer {
290
290
291
291
#[ derive( Deserialize , Debug ) ]
292
292
pub struct AddrVec {
293
- r#type : String ,
294
- addr : String ,
295
- nonce : i32 ,
293
+ pub r#type : String ,
294
+ pub addr : String ,
295
+ pub nonce : i32 ,
296
296
}
297
297
298
298
#[ derive( Deserialize , Debug ) ]
0 commit comments