[][src]Struct cpclib_disc::edsk::SectorInformation

pub struct SectorInformation { /* fields omitted */ }

Implementations

impl SectorInformation[src]

pub fn track(&self) -> &u8[src]

track (equivalent to C parameter in NEC765 commands)

pub fn head(&self) -> &u8[src]

Head (equivalent to H parameter in NEC765 commands)

pub fn sector_id(&self) -> &u8[src]

sector ID (equivalent to R parameter in NEC765 commands)

pub fn sector_size(&self) -> &u8[src]

sector size (equivalent to N parameter in NEC765 commands)

pub fn fdc_status_register_1(&self) -> &u8[src]

FDC status register 1 (equivalent to NEC765 ST1 status register)

pub fn fdc_status_register_2(&self) -> &u8[src]

FDC status register 2 (equivalent to NEC765 ST2 status register)

pub fn data_length(&self) -> &u16[src]

actual data length in bytes

impl SectorInformation[src]

pub fn len(&self) -> usize[src]

Return the real size of the sector

pub fn is_empty(&self) -> bool[src]

Check if the sector is empty

pub fn from_buffer(buffer: &[u8]) -> Self[src]

pub fn to_buffer(&self, buffer: &mut Vec<u8>)[src]

00 track (equivalent to C parameter in NEC765 commands) 1 01 Head (equivalent to H parameter in NEC765 commands) 1 02 sector ID (equivalent to R parameter in NEC765 commands) 1 03 sector size (equivalent to N parameter in NEC765 commands) 1 04 FDC status register 1 (equivalent to NEC765 ST1 status register) 1 05 FDC status register 2 (equivalent to NEC765 ST2 status register) 1 06 - 07 actual data length in bytes 2

Trait Implementations

impl Clone for SectorInformation[src]

impl Copy for SectorInformation[src]

impl Debug for SectorInformation[src]

impl Default for SectorInformation[src]

impl PartialEq<SectorInformation> for SectorInformation[src]

impl StructuralPartialEq for SectorInformation[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryConv for T

impl<T> TryConv for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.