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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

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