Type Alias GQueue

Source
pub type GQueue = _GQueue;
Expand description

GQueue: @head: a pointer to the first element of the queue @tail: a pointer to the last element of the queue @length: the number of elements in the queue

Contains the public fields of a [Queue][glib-Double-ended-Queues].

Aliased Type§

struct GQueue {
    pub head: *mut _GList,
    pub tail: *mut _GList,
    pub length: u32,
}

Fields§

§head: *mut _GList§tail: *mut _GList§length: u32