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