diff options
Diffstat (limited to 'src/model/user.rs')
| -rw-r--r-- | src/model/user.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/model/user.rs b/src/model/user.rs index a214b3d..bc22957 100644 --- a/src/model/user.rs +++ b/src/model/user.rs @@ -769,10 +769,6 @@ impl<'a> From<&'a User> for UserId { fn from(user: &User) -> UserId { user.id } } -impl fmt::Display for UserId { - fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { fmt::Display::fmt(&self.0, f) } -} - #[cfg(feature = "model")] fn avatar_url(user_id: UserId, hash: Option<&String>) -> Option<String> { hash.map(|hash| { |