Interprets this integer as a value in little-endian representation and returns the value in host-endian representation.
impl W32 {
fn from_le(self) -> W32
}This example shows the behavior on a little-endian machine.
let x: u16 = 0x0001; assert!(x.from_be() == 1);