make MetadataFields be public

This commit is contained in:
Jennifer Glauche
2020-04-07 12:37:27 -04:00
committed by Paul Woolcock
parent 3d0ecb9e41
commit 1dd2963cf3
+2 -2
View File
@@ -54,8 +54,8 @@ pub struct Account {
/// A single name: value pair from a user's profile /// A single name: value pair from a user's profile
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Default)] #[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Default)]
pub struct MetadataField { pub struct MetadataField {
name: String, pub name: String,
value: String, pub value: String,
} }
impl MetadataField { impl MetadataField {