pub enum ControllerBus {
Virtual = 0,
Usb = 1,
Pcmcia = 2,
Uart = 3,
Rs232 = 4,
Pci = 5,
Sdio = 6,
Spi = 7,
I2c = 8,
Smd = 9,
Virtio = 10,
}
Variants§
Virtual = 0
Usb = 1
Pcmcia = 2
Uart = 3
Rs232 = 4
Pci = 5
Sdio = 6
Spi = 7
I2c = 8
Smd = 9
Virtio = 10
Trait Implementations§
Source§impl Clone for ControllerBus
impl Clone for ControllerBus
Source§fn clone(&self) -> ControllerBus
fn clone(&self) -> ControllerBus
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 ControllerBus
impl Debug for ControllerBus
Source§impl Pack for ControllerBus
impl Pack for ControllerBus
Auto Trait Implementations§
impl Freeze for ControllerBus
impl RefUnwindSafe for ControllerBus
impl Send for ControllerBus
impl Sync for ControllerBus
impl Unpin for ControllerBus
impl UnwindSafe for ControllerBus
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