#[repr(C)]pub struct D88_SectorHdr {
pub track: u8,
pub side: u8,
pub sector: u8,
pub sector_size: u8,
pub number_of_sec: u16,
pub density: u8,
pub deleted_mark: u8,
pub status: u8,
pub reserved: [u8; 5],
pub size_of_data: u16,
}
Expand description
Sector Header at D88 File
D88ファイルのセクタのヘッダ情報
Fields§
§track: u8
§side: u8
§sector: u8
§sector_size: u8
§number_of_sec: u16
§density: u8
§deleted_mark: u8
§status: u8
§reserved: [u8; 5]
§size_of_data: u16
Trait Implementations§
Source§impl Clone for D88_SectorHdr
impl Clone for D88_SectorHdr
Source§fn clone(&self) -> D88_SectorHdr
fn clone(&self) -> D88_SectorHdr
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 D88_SectorHdr
impl Debug for D88_SectorHdr
Source§impl Default for D88_SectorHdr
impl Default for D88_SectorHdr
Source§fn default() -> D88_SectorHdr
fn default() -> D88_SectorHdr
Returns the “default value” for a type. Read more
Source§impl Ord for D88_SectorHdr
impl Ord for D88_SectorHdr
Source§fn cmp(&self, other: &D88_SectorHdr) -> Ordering
fn cmp(&self, other: &D88_SectorHdr) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for D88_SectorHdr
impl PartialEq for D88_SectorHdr
Source§impl PartialOrd for D88_SectorHdr
impl PartialOrd for D88_SectorHdr
impl Copy for D88_SectorHdr
impl Eq for D88_SectorHdr
impl StructuralPartialEq for D88_SectorHdr
Auto Trait Implementations§
impl Freeze for D88_SectorHdr
impl RefUnwindSafe for D88_SectorHdr
impl Send for D88_SectorHdr
impl Sync for D88_SectorHdr
impl Unpin for D88_SectorHdr
impl UnwindSafe for D88_SectorHdr
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