Skip to main content

extended_file_entry

Struct extended_file_entry 

Source
#[repr(C, packed(1))]
pub struct extended_file_entry {
Show 25 fields pub tag: udf_tag_t, pub icb_tag: udf_icbtag_t, pub uid: udf_Uint32_t, pub gid: udf_Uint32_t, pub permissions: udf_Uint32_t, pub link_count: udf_Uint16_t, pub rec_format: udf_Uint8_t, pub rec_display_attr: udf_Uint8_t, pub record_len: udf_Uint32_t, pub info_len: udf_Uint64_t, pub object_size: udf_Uint64_t, pub logblks_recorded: udf_Uint64_t, pub access_time: udf_timestamp_t, pub modification_time: udf_timestamp_t, pub create_time: udf_timestamp_t, pub attribute_time: udf_timestamp_t, pub checkpoint: udf_Uint32_t, pub reserved: udf_Uint32_t, pub ext_attr_ICB: udf_long_ad_t, pub stream_directory_ICB: udf_long_ad_t, pub imp_id: udf_regid_t, pub unique_ID: udf_Uint64_t, pub length_extended_attr: udf_Uint32_t, pub length_alloc_descs: udf_Uint32_t, pub u: extended_file_entry__bindgen_ty_1,
}
Expand description

File Entry (ECMA 167r3 4/14.17)

Fields§

§tag: udf_tag_t

< 4/14.17.1 - id = 266

§icb_tag: udf_icbtag_t

< 4/14.17.2 & 4/14.9.2

§uid: udf_Uint32_t

< 4/14.17.3 & 4/14.9.3

§gid: udf_Uint32_t

< 4/14.17.4 & 4/14.9.4

§permissions: udf_Uint32_t

< 4/14.17.5 & 4/14.9.5

§link_count: udf_Uint16_t

< 4/14.17.6 & 4/14.9.6

§rec_format: udf_Uint8_t

< 4/14.17.7 & 4/14.9.7

§rec_display_attr: udf_Uint8_t

< 4/14.17.8 & 4/14.9.8

§record_len: udf_Uint32_t

< 4/14.17.9 & 4/14.9.9

§info_len: udf_Uint64_t

< 4/14.17.10 & 4/14.9.10

§object_size: udf_Uint64_t

< 4/14.17.11

§logblks_recorded: udf_Uint64_t

< 4/14.17.12 & 4/14.9.11

§access_time: udf_timestamp_t

< 4/14.17.13 & 4/14.9.12 - last access to any stream of file

§modification_time: udf_timestamp_t

< 4/14.17.14 & 4/14.9.13 - last modification to any stream of file

§create_time: udf_timestamp_t

< 4/14.17.15

§attribute_time: udf_timestamp_t

< 4/14.17.16 & 4/14.9.14 - most recent create or modify time

§checkpoint: udf_Uint32_t§reserved: udf_Uint32_t

< #00 bytes

§ext_attr_ICB: udf_long_ad_t§stream_directory_ICB: udf_long_ad_t§imp_id: udf_regid_t§unique_ID: udf_Uint64_t§length_extended_attr: udf_Uint32_t§length_alloc_descs: udf_Uint32_t§u: extended_file_entry__bindgen_ty_1

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.