File

Struct File 

Source
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 for File<'a>

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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> StructuralPartialEq for File<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for File<'a>

§

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 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.