ted using the [`new`] method, and its contained value can be obtained as a native `f32` using the [`get`] method, or updated in place with the [`set`] method. In all cases, if the endianness `O` is not the same as the endianness of the current platform, an endianness swap will be performed in order to uphold the invariants that a) the layout of `F32` has endianness `O` and that, b) the layout of `f32` has the platform's native endianness. `F32` implements [`FromBytes`], [`IntoBytes`], and [`Unaligned`], making it useful for parsing and serialization. See the module documentation for an example of how it can be used for parsing UDP packets. [`new`]: crate::byteorder::F32::new [`get`]: crate::byteorder::F32::get [`set`]: crate::byteorder::F32::set [`FromBytes`]: crate::FromBytes [`IntoBytes`]: crate::IntoBytes [`Unaligned`]: crate::Unaligned