Mos6502CompatibleBus

Trait Mos6502CompatibleBus 

Source
pub trait Mos6502CompatibleBus: Bus<Access = AccessType, Data = Byte> { }
Expand description

Convenience bound for MOS 6502/WDC 65C02 compatible buses.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> Mos6502CompatibleBus for T
where T: Bus<Access = AccessType, Data = Byte>,