uiList

Struct uiList 

Source
#[repr(C, packed(4))]
pub struct uiList {
Show 17 fields pub next: Pointer<uiList>, pub prev: Pointer<uiList>, pub type_: Pointer<Nothing>, pub list_id: [i8; 64], pub layout_type: i32, pub flag: i32, pub list_scroll: i32, pub list_grip: i32, pub list_last_len: i32, pub list_last_activei: i32, pub filter_byname: [i8; 64], pub filter_flag: i32, pub filter_sort_flag: i32, pub custom_activate_opname: Pointer<i8>, pub custom_drag_opname: Pointer<i8>, pub properties: Pointer<IDProperty>, pub dyn_data: Pointer<Nothing>,
}

Fields§

§next: Pointer<uiList>§prev: Pointer<uiList>§type_: Pointer<Nothing>§list_id: [i8; 64]§layout_type: i32§flag: i32§list_scroll: i32§list_grip: i32§list_last_len: i32§list_last_activei: i32§filter_byname: [i8; 64]§filter_flag: i32§filter_sort_flag: i32§custom_activate_opname: Pointer<i8>§custom_drag_opname: Pointer<i8>§properties: Pointer<IDProperty>§dyn_data: Pointer<Nothing>

Trait Implementations§

Auto Trait Implementations§

§

impl Freeze for uiList

§

impl RefUnwindSafe for uiList

§

impl Send for uiList

§

impl Sync for uiList

§

impl Unpin for uiList

§

impl UnwindSafe for uiList

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.