bittorrent_udp: improve code formatting and imports

This commit is contained in:
Joakim Frostegård 2020-04-10 15:20:27 +02:00
parent fe85901021
commit b32046e768
4 changed files with 41 additions and 43 deletions

View file

@ -1,23 +1,23 @@
use crate::types;
use crate::types::AnnounceEvent;
#[inline]
pub fn event_from_i32(i: i32) -> types::AnnounceEvent {
pub fn event_from_i32(i: i32) -> AnnounceEvent {
match i {
1 => types::AnnounceEvent::Completed,
2 => types::AnnounceEvent::Started,
3 => types::AnnounceEvent::Stopped,
_ => types::AnnounceEvent::None
1 => AnnounceEvent::Completed,
2 => AnnounceEvent::Started,
3 => AnnounceEvent::Stopped,
_ => AnnounceEvent::None
}
}
#[inline]
pub fn event_to_i32(event: types::AnnounceEvent) -> i32 {
pub fn event_to_i32(event: AnnounceEvent) -> i32 {
match event {
types::AnnounceEvent::None => 0,
types::AnnounceEvent::Completed => 1,
types::AnnounceEvent::Started => 2,
types::AnnounceEvent::Stopped => 3
AnnounceEvent::None => 0,
AnnounceEvent::Completed => 1,
AnnounceEvent::Started => 2,
AnnounceEvent::Stopped => 3
}
}