pub struct AddressField {
pub volume: u8,
pub track: u8,
pub sector: u8,
pub checksum: u8,
}Expand description
An address field identifies the data field that follows it
Fields§
§volume: u8The volume of the track
track: u8The track of the track
sector: u8The sector of the track
checksum: u8The checksum of the address field
Auto Trait Implementations§
impl Freeze for AddressField
impl RefUnwindSafe for AddressField
impl Send for AddressField
impl Sync for AddressField
impl Unpin for AddressField
impl UnsafeUnpin for AddressField
impl UnwindSafe for AddressField
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