iso9660_svd_s

Struct iso9660_svd_s 

Source
#[repr(C, packed(1))]
pub struct iso9660_svd_s {
Show 34 fields pub type_: iso711_t, pub id: [c_char; 5], pub version: iso711_t, pub flags: c_char, pub system_id: [achar_t; 32], pub volume_id: [dchar_t; 32], pub unused2: [c_char; 8], pub volume_space_size: iso733_t, pub escape_sequences: [c_char; 32], pub volume_set_size: iso723_t, pub volume_sequence_number: iso723_t, pub logical_block_size: iso723_t, pub path_table_size: iso733_t, pub type_l_path_table: iso731_t, pub opt_type_l_path_table: iso731_t, pub type_m_path_table: iso732_t, pub opt_type_m_path_table: iso732_t, pub root_directory_record: iso9660_dir_t, pub root_directory_filename: c_char, pub volume_set_id: [dchar_t; 128], pub publisher_id: [achar_t; 128], pub preparer_id: [achar_t; 128], pub application_id: [achar_t; 128], pub copyright_file_id: [dchar_t; 37], pub abstract_file_id: [dchar_t; 37], pub bibliographic_file_id: [dchar_t; 37], pub creation_date: iso9660_ltime_t, pub modification_date: iso9660_ltime_t, pub expiration_date: iso9660_ltime_t, pub effective_date: iso9660_ltime_t, pub file_structure_version: iso711_t, pub unused4: [u8; 1], pub application_data: [c_char; 512], pub unused5: [u8; 653],
}

Fields§

§type_: iso711_t§id: [c_char; 5]§version: iso711_t§flags: c_char§system_id: [achar_t; 32]§volume_id: [dchar_t; 32]§unused2: [c_char; 8]§volume_space_size: iso733_t§escape_sequences: [c_char; 32]§volume_set_size: iso723_t§volume_sequence_number: iso723_t§logical_block_size: iso723_t§path_table_size: iso733_t§type_l_path_table: iso731_t§opt_type_l_path_table: iso731_t§type_m_path_table: iso732_t§opt_type_m_path_table: iso732_t§root_directory_record: iso9660_dir_t§root_directory_filename: c_char§volume_set_id: [dchar_t; 128]§publisher_id: [achar_t; 128]§preparer_id: [achar_t; 128]§application_id: [achar_t; 128]§copyright_file_id: [dchar_t; 37]§abstract_file_id: [dchar_t; 37]§bibliographic_file_id: [dchar_t; 37]§creation_date: iso9660_ltime_t§modification_date: iso9660_ltime_t§expiration_date: iso9660_ltime_t§effective_date: iso9660_ltime_t§file_structure_version: iso711_t§unused4: [u8; 1]§application_data: [c_char; 512]§unused5: [u8; 653]

Trait Implementations§

Source§

impl Clone for iso9660_svd_s

Source§

fn clone(&self) -> iso9660_svd_s

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for iso9660_svd_s

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.