Enum drone::crates::Dso[][src]

pub enum Dso {
    Nrf91,
    Cc2538,
    Gd32V,
    Sifive,
}

Drone Serial Output implementation crates.

Variants

Nrf91
Cc2538
Gd32V
Sifive

Implementations

impl Dso[src]

pub fn name(self) -> &'static str[src]

Returns the crate name.

pub fn used_regs(self) -> &'static [&'static str][src]

Returns a list of used registers.

Trait Implementations

impl Clone for Dso[src]

impl Copy for Dso[src]

impl Debug for Dso[src]

Auto Trait Implementations

impl RefUnwindSafe for Dso

impl Send for Dso

impl Sync for Dso

impl Unpin for Dso

impl UnwindSafe for Dso

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> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,