pub enum Info {
Device {
major: u32,
minor: u32,
inode: u64,
inode_gen: u64,
},
BuildId(ArrayVec<u8, BUILD_ID_SIZE_MAX>),
}
Expand description
Device info or ELF file build ID.
Variants§
Device
Device info.
Fields
BuildId(ArrayVec<u8, BUILD_ID_SIZE_MAX>)
ELF file build ID.
See also UseBuildId
.
Since linux-5.12
: https://github.com/torvalds/linux/commit/88a16a1309333e43d328621ece3e9fa37027e8eb
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Info
impl RefUnwindSafe for Info
impl Send for Info
impl Sync for Info
impl Unpin for Info
impl UnwindSafe for Info
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