#[repr(C)]pub struct cdio_iso_analysis_t {
pub joliet_level: c_uint,
pub iso_label: [c_char; 33],
pub isofs_size: c_uint,
pub UDFVerMinor: u8,
pub UDFVerMajor: u8,
}Expand description
\brief The type used to return analysis information from cdio_guess_cd_type.
These fields make sense only for when an ISO-9660 filesystem is used.
Fields§
§joliet_level: c_uint< If has Joliet extensions, this is the associated level number (i.e. 1, 2, or 3).
iso_label: [c_char; 33]< This is 32 + 1 for null byte at the end in formatting the string
isofs_size: c_uint§UDFVerMinor: u8< For UDF filesystems only
UDFVerMajor: u8< For UDF filesystems only
Trait Implementations§
Source§impl Clone for cdio_iso_analysis_t
impl Clone for cdio_iso_analysis_t
Source§fn clone(&self) -> cdio_iso_analysis_t
fn clone(&self) -> cdio_iso_analysis_t
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for cdio_iso_analysis_t
Auto Trait Implementations§
impl Freeze for cdio_iso_analysis_t
impl RefUnwindSafe for cdio_iso_analysis_t
impl Send for cdio_iso_analysis_t
impl Sync for cdio_iso_analysis_t
impl Unpin for cdio_iso_analysis_t
impl UnsafeUnpin for cdio_iso_analysis_t
impl UnwindSafe for cdio_iso_analysis_t
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more