[][src]Struct clips_sys::genericHashNode

#[repr(C)]
pub struct genericHashNode {
    pub header: TypeHeader,
    pub next: *mut genericHashNode,
    pub count: c_long,
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4], u32>,
    pub __bindgen_padding_0: u32,
}

Fields

header: TypeHeadernext: *mut genericHashNodecount: c_long_bitfield_1: __BindgenBitfieldUnit<[u8; 4], u32>__bindgen_padding_0: u32

Methods

impl genericHashNode[src]

pub fn permanent(&self) -> c_uint[src]

pub fn set_permanent(&mut self, val: c_uint)[src]

pub fn markedEphemeral(&self) -> c_uint[src]

pub fn set_markedEphemeral(&mut self, val: c_uint)[src]

pub fn needed(&self) -> c_uint[src]

pub fn set_needed(&mut self, val: c_uint)[src]

pub fn bucket(&self) -> c_uint[src]

pub fn set_bucket(&mut self, val: c_uint)[src]

pub fn new_bitfield_1(
    permanent: c_uint,
    markedEphemeral: c_uint,
    needed: c_uint,
    bucket: c_uint
) -> __BindgenBitfieldUnit<[u8; 4], u32>
[src]

Trait Implementations

impl Clone for genericHashNode[src]

impl Copy for genericHashNode[src]

impl Debug for genericHashNode[src]

impl Default for genericHashNode[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.