pub struct GenericIsaFloppyDeps {
pub irq: u32,
pub dma_channel: u8,
pub pio_base: u16,
pub drives: DriveRibbon,
}
Expand description
Generic ISA floppy controller
Fields§
§irq: u32
IRQ line shared by both floppy controllers
dma_channel: u8
DMA channel to use for floppy DMA transfers
pio_base: u16
Base port io address of the primary devices’s register region
drives: DriveRibbon
Floppy Drives attached to the controller
Auto Trait Implementations§
impl Freeze for GenericIsaFloppyDeps
impl !RefUnwindSafe for GenericIsaFloppyDeps
impl Send for GenericIsaFloppyDeps
impl Sync for GenericIsaFloppyDeps
impl Unpin for GenericIsaFloppyDeps
impl !UnwindSafe for GenericIsaFloppyDeps
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