Struct polylineffi::ExternalArray
source · #[repr(C)]pub struct ExternalArray {
pub data: *const c_void,
pub len: size_t,
}Expand description
A C-compatible struct originating outside Rust
used for passing arrays across the FFI boundary
Fields§
§data: *const c_void§len: size_tTrait Implementations§
source§impl From<ExternalArray> for LineString<f64>
impl From<ExternalArray> for LineString<f64>
source§fn from(arr: ExternalArray) -> Self
fn from(arr: ExternalArray) -> Self
Converts to this type from the input type.