Complete some hash_layout implementations

This commit is contained in:
Héctor Ramón Jiménez 2019-09-20 19:31:49 +02:00
parent b9e0f74948
commit eda1048dbc
3 changed files with 7 additions and 6 deletions

View file

@ -27,6 +27,8 @@ where
fn hash_layout(&self, state: &mut Hasher) {
self.content.hash(state);
self.size.hash(state);
self.width.hash(state);
self.height.hash(state);
}
}