Panel

Struct Panel 

Source
#[repr(C, packed(4))]
pub struct Panel {
Show 20 fields pub next: Pointer<Panel>, pub prev: Pointer<Panel>, pub type_: Pointer<Nothing>, pub layout: Pointer<Nothing>, pub panelname: [i8; 64], pub drawname: [i8; 64], pub ofsx: i32, pub ofsy: i32, pub sizex: i32, pub sizey: i32, pub blocksizex: i32, pub blocksizey: i32, pub labelofs: i16, pub flag: i16, pub runtime_flag: i16, pub _pad: [i8; 6], pub sortorder: i32, pub activedata: Pointer<Void>, pub children: ListBase, pub runtime: Panel_Runtime,
}

Fields§

§next: Pointer<Panel>§prev: Pointer<Panel>§type_: Pointer<Nothing>§layout: Pointer<Nothing>§panelname: [i8; 64]§drawname: [i8; 64]§ofsx: i32§ofsy: i32§sizex: i32§sizey: i32§blocksizex: i32§blocksizey: i32§labelofs: i16§flag: i16§runtime_flag: i16§_pad: [i8; 6]§sortorder: i32§activedata: Pointer<Void>§children: ListBase§runtime: Panel_Runtime

Trait Implementations§

Auto Trait Implementations§

§

impl Freeze for Panel

§

impl RefUnwindSafe for Panel

§

impl Send for Panel

§

impl Sync for Panel

§

impl Unpin for Panel

§

impl UnwindSafe for Panel

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.