Use to_ne_bytes for converting IPv4Address to octets

It is easier and it should be also faster, because `to_ne_bytes` just calls `mem::transmute`.
This commit is contained in:
Jakub Onderka 2019-01-18 19:08:31 +01:00 committed by GitHub
parent 527b8d4243
commit 87f5a98a5d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -393,8 +393,7 @@ impl Ipv4Addr {
/// ```
#[stable(feature = "rust1", since = "1.0.0")]
pub fn octets(&self) -> [u8; 4] {
let bits = u32::from_be(self.inner.s_addr);
[(bits >> 24) as u8, (bits >> 16) as u8, (bits >> 8) as u8, bits as u8]
self.inner.s_addr.to_ne_bytes()
}
/// Returns [`true`] for the special 'unspecified' address (0.0.0.0).