ВМ
Size: a a a
ВМ
ВМ
ВМ
fn reflect_u32(&mut self, data: &mut u32) -> std::io::Result<()> {
let mut d = data.to_be();
let b0 = (d & 0xFF) as u8; d /= 0x100;
let b1 = (d & 0xFF) as u8; d /= 0x100;
let b2 = (d & 0xFF) as u8; d /= 0x100;
let b3 = (d & 0xFF) as u8;
let bytes_written = self.stream.write(&[b0, b1, b2, b3])?;
if bytes_written == 4 {
Ok(())
} else {
Err(std::io::Error::new(
std::io::ErrorKind::Other,
"failed to write four bytes"
))
}
}УМ
R
R
stdВМ
R
R
ВМ
k

MS
MS
ВМ
ВМ
AL
MS
ВМ
MS
MS