gdal 0.19.0

GDAL bindings for Rust
1
2
3
4
5
6
7
use crate::cpl::CslStringList;

/// Key/value pairs of options for passing driver-specific creation flags to
/// [`Driver::create_with_band_type_with_options`](crate::Driver::create_with_band_type_with_options`).
///
/// See `papszOptions` in [GDAL's `Create(...)` API documentation](https://gdal.org/api/gdaldriver_cpp.html#_CPPv4N10GDALDriver6CreateEPKciii12GDALDataType12CSLConstList).
pub type RasterCreationOptions = CslStringList;