pub struct Section0 {
pub identifier: [u8; 4],
pub reserved: [u8; 2],
pub discipline: u8,
pub edition_num: u8,
pub total_len: u64,
}Expand description
SECTION 0 - Indicator section.
Fields§
§identifier: [u8; 4]“GRIB” (coded according to the International Alphabet No. 5).
reserved: [u8; 2]Reserved.
discipline: u8Discipline - GRIB Master Table Number (see Code Table 0.0).
edition_num: u8GRIB Edition Number (currently 2).
total_len: u64Total length of GRIB message in octets (including Section 0).
Trait Implementations§
impl StructuralPartialEq for Section0
Source§impl TryFromSlice for Section0
impl TryFromSlice for Section0
Source§impl WriteToBuffer for Section0
impl WriteToBuffer for Section0
Auto Trait Implementations§
impl Freeze for Section0
impl RefUnwindSafe for Section0
impl Send for Section0
impl Sync for Section0
impl Unpin for Section0
impl UnsafeUnpin for Section0
impl UnwindSafe for Section0
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more