#[repr(C)]pub struct vtoc {
pub v_bootinfo: [c_ulong; 3],
pub v_sanity: c_ulong,
pub v_version: c_ulong,
pub v_volume: [c_char; 8],
pub v_sectorsz: ushort_t,
pub v_nparts: ushort_t,
pub v_reserved: [c_ulong; 10],
pub v_part: [partition; 16],
pub timestamp: [time_t; 16],
pub v_asciilabel: [c_char; 128],
}Fields§
§v_bootinfo: [c_ulong; 3]§v_sanity: c_ulong§v_version: c_ulong§v_volume: [c_char; 8]§v_sectorsz: ushort_t§v_nparts: ushort_t§v_reserved: [c_ulong; 10]§v_part: [partition; 16]§timestamp: [time_t; 16]§v_asciilabel: [c_char; 128]Trait Implementations§
Auto Trait Implementations§
impl Freeze for vtoc
impl RefUnwindSafe for vtoc
impl Send for vtoc
impl Sync for vtoc
impl Unpin for vtoc
impl UnwindSafe for vtoc
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