#[repr(C)]
pub struct File<'a> {
Show 13 fields pub revision: u64, pub address: *const u8, pub size: u64, pub path: &'a CStr, pub cmdline: &'a CStr, pub media_type: FileType, pub tftp_ip: u32, pub tftp_port: u32, pub partition_index: u32, pub mbr_disk_id: u32, pub gpt_disk_uuid: UUID, pub gpt_part_uuid: UUID, pub part_uuid: UUID, /* private fields */
}
Expand description

File structure

Fields§

§revision: u64

Revision of the File structure

§address: *const u8

The address of the file

§size: u64

The size of the file

§path: &'a CStr

The path of the file

§cmdline: &'a CStr

A command line associated with the file

§media_type: FileType

The kind of media the file is on

§tftp_ip: u32

IP of the TFTP server, if one was used

§tftp_port: u32

Port of the TFTP server, if one was used

§partition_index: u32

!-based partition index of the volume from which the file was loaded

§mbr_disk_id: u32

If non-zero, the ID of the disk from the MBR

§gpt_disk_uuid: UUID

The UUID of the disk from which the file was loaded from GPT, if it is non-zero

§gpt_part_uuid: UUID

The UUID of the partition from which the file was loaded from GPT, if it is non-zero

§part_uuid: UUID

The UUID of the filesystem frmo which the file was laoded from GPT, if it is non-zero,

Trait Implementations§

source§

impl<'a> Debug for File<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> PartialEq<File<'a>> for File<'a>

source§

fn eq(&self, other: &File<'a>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a> Eq for File<'a>

source§

impl<'a> StructuralEq for File<'a>

source§

impl<'a> StructuralPartialEq for File<'a>

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for File<'a>

§

impl<'a> !Send for File<'a>

§

impl<'a> !Sync for File<'a>

§

impl<'a> Unpin for File<'a>

§

impl<'a> UnwindSafe for File<'a>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.