pub trait GeoTiffNumeric: Default + Clone {
// Required methods
fn zero() -> Self;
fn from_f32(val: f32) -> Self;
}Expand description
Trait for numeric types supported by GeoTIFF
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.