Format Rust code using rustfmt

This commit is contained in:
github-actions[bot]
2020-04-18 16:43:25 +00:00
committed by GitHub
parent c47c4205aa
commit 8983aa60d1

View File

@@ -68,7 +68,13 @@ impl Avatar {
.map(|&frame| Image::from(frame.to_string())) .map(|&frame| Image::from(frame.to_string()))
.collect(); .collect();
Ok(Avatar { animation_frames, name, room_id, position, colour_id }) Ok(Avatar {
animation_frames,
name,
room_id,
position,
colour_id,
})
} }
} }