#[repr(u16)]pub enum VolumeSignature {
Flat = 1,
FixedDirectoryID = 2,
VariableDirectoryID = 3,
}Variants§
Flat = 1
Indicates no directories, only files, i.e MFS. Only supported in old AFP versions.
FixedDirectoryID = 2
Indicates directory IDs do not change. Should be the default.
VariableDirectoryID = 3
Indicates directory IDs can change. No need to implement this one.
Auto Trait Implementations§
impl Freeze for VolumeSignature
impl RefUnwindSafe for VolumeSignature
impl Send for VolumeSignature
impl Sync for VolumeSignature
impl Unpin for VolumeSignature
impl UnsafeUnpin for VolumeSignature
impl UnwindSafe for VolumeSignature
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