pub struct IsoOptions {
pub enabled: bool,
pub level: BaseIsoLevel,
pub long_filenames: bool,
pub joliet: Option<JolietLevel>,
pub rock_ridge: Option<RripOptions>,
}Expand description
ISO 9660 specific options
Fields§
§enabled: boolEnable ISO 9660 (default: true)
level: BaseIsoLevelBase ISO level (L1 = 8.3, L2 = 30 chars)
long_filenames: boolEnable ISO 9660:1999 (Level 3, long filenames)
joliet: Option<JolietLevel>Joliet extension (Windows long filenames)
rock_ridge: Option<RripOptions>Rock Ridge extension (POSIX attributes)
Trait Implementations§
Source§impl Clone for IsoOptions
impl Clone for IsoOptions
Source§fn clone(&self) -> IsoOptions
fn clone(&self) -> IsoOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IsoOptions
impl Debug for IsoOptions
Auto Trait Implementations§
impl Freeze for IsoOptions
impl RefUnwindSafe for IsoOptions
impl Send for IsoOptions
impl Sync for IsoOptions
impl Unpin for IsoOptions
impl UnsafeUnpin for IsoOptions
impl UnwindSafe for IsoOptions
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