pub trait GridShortName {
// Required method
fn short_name(&self) -> &'static str;
}Expand description
A functionality to return a short name of the grid system.
Required Methods§
Sourcefn short_name(&self) -> &'static str
fn short_name(&self) -> &'static str
Returns the grid type.
The grid types are denoted as short strings based on gridType used in
ecCodes.
This is provided primarily for debugging and simple notation purposes. It is better to use enum variants instead of the string notation to determine the grid type.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".