[][src]Struct irssi_sys::_GQueue

#[repr(C)]
pub struct _GQueue {
    pub head: *mut GList,
    pub tail: *mut GList,
    pub length: guint,
}

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].

Fields

head: *mut GListtail: *mut GListlength: guint

Trait Implementations

impl Clone for _GQueue[src]

impl Copy for _GQueue[src]

impl Debug for _GQueue[src]

Auto Trait Implementations

impl !Send for _GQueue

impl Unpin for _GQueue

impl !Sync for _GQueue

impl UnwindSafe for _GQueue

impl RefUnwindSafe for _GQueue

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]