gdal 0.19.0

GDAL bindings for Rust
1
2
3
4
5
6
use gdal_sys::GDALMajorObjectH;

/// Common trait for GDAL data types backed by [`GDALMajorObjectH`].
pub trait MajorObject {
    fn gdal_object_ptr(&self) -> GDALMajorObjectH;
}