add documentation to metadata fields

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