Skip to main content

s_124/
lib.rs

1//! IHO **S-124** Navigational Warnings in the S-100 family — stub.
2//!
3//! Supports **NAVAREA / coastal warning** style content as structured S-100 datasets for ECDIS.
4
5#![forbid(unsafe_code)]
6
7/// Placeholder until S-124 warning records and geometry are modeled.
8#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
9pub struct NavigationalWarningsStub;
10
11#[cfg(test)]
12mod tests {
13    use super::*;
14    #[test]
15    fn stub() {
16        let _ = NavigationalWarningsStub;
17    }
18}