wkb 0.9.2

Fast, pure-Rust reader and writer for Well-Known Binary geometries
1
2
3
4
5
6
7
8
use crate::Endianness;

/// Options for writing geometries to WKB
#[derive(Debug, Clone, Default)]
pub struct WriteOptions {
    /// The byte order to use when writing the WKB
    pub endianness: Endianness,
}