Struct image_info

Source
#[repr(C)]
pub struct image_info {
Show 15 fields pub id: image_id, pub image_type: image_type, pub sequence: i32, pub init_order: i32, pub init_routine: *const c_void, pub term_routine: *const c_void, pub device: dev_t, pub node: ino_t, pub name: [c_char; 4096], pub text: *const c_void, pub data: *const c_void, pub text_size: i32, pub data_size: i32, pub api_version: i32, pub abi: i32,
}

Fields§

§id: image_id§image_type: image_type§sequence: i32§init_order: i32§init_routine: *const c_void§term_routine: *const c_void§device: dev_t§node: ino_t§name: [c_char; 4096]§text: *const c_void§data: *const c_void§text_size: i32§data_size: i32§api_version: i32§abi: i32

Auto Trait Implementations§

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.