#[non_exhaustive]pub struct RockRidgeAttributes {
pub create_time: Option<OffsetDateTime>,
pub group_id: u32,
pub hard_links: u32,
pub mode: Mode,
pub modify_time: Option<OffsetDateTime>,
pub symlink_to: Option<String>,
pub user_id: u32,
}Available on crate feature
iso9660 only.Expand description
ISO 9660 Rock Ridge extensions.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.create_time: Option<OffsetDateTime>§group_id: u32§hard_links: u32§mode: Mode§modify_time: Option<OffsetDateTime>§symlink_to: Option<String>§user_id: u32Trait Implementations§
Source§impl Clone for RockRidgeAttributes
impl Clone for RockRidgeAttributes
Source§fn clone(&self) -> RockRidgeAttributes
fn clone(&self) -> RockRidgeAttributes
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 moreAuto Trait Implementations§
impl Freeze for RockRidgeAttributes
impl RefUnwindSafe for RockRidgeAttributes
impl Send for RockRidgeAttributes
impl Sync for RockRidgeAttributes
impl Unpin for RockRidgeAttributes
impl UnsafeUnpin for RockRidgeAttributes
impl UnwindSafe for RockRidgeAttributes
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