Type Alias gdal_sys::CPLList

source ·
pub type CPLList = _CPLList;
Expand description

List element structure.

Aliased Type§

struct CPLList {
    pub pData: *mut c_void,
    pub psNext: *mut _CPLList,
}

Fields§

§pData: *mut c_void

Pointer to the data object. Should be allocated and freed by the caller.

§psNext: *mut _CPLList

Pointer to the next element in list. NULL, if current element is the last one.