docs(all): Added documentation to missing parts

This commit is contained in:
Aaron Power
2017-11-11 11:50:09 +00:00
parent 87bcc139bb
commit b445197381
15 changed files with 203 additions and 13 deletions
+9
View File
@@ -1,8 +1,17 @@
//! module containing everything relating to a relationship with
//! another account.
/// A struct containing information about a relationship with another account.
#[derive(Debug, Clone, Deserialize)]
pub struct Relationship {
/// Whether the application client follows the account.
pub following: bool,
/// Whether the account follows the application client.
pub followed_by: bool,
/// Whether the application client blocks the account.
pub blocking: bool,
/// Whether the application client blocks the account.
pub muting: bool,
/// Whether the application client has requested to follow the account.
pub requested: bool,
}