Struct xhci::extended_capabilities::NotSupportedId[][src]

pub struct NotSupportedId(pub u8);

A struct representing that the Extended Capability with the ID is not supported by this crate.

Examples

// The Extended Capability with the ID 7 is not supported by this crate.
use xhci::extended_capabilities::NotSupportedId;

NotSupportedId(7);

Trait Implementations

impl Clone for NotSupportedId[src]

impl Copy for NotSupportedId[src]

impl Debug for NotSupportedId[src]

impl Default for NotSupportedId[src]

impl Eq for NotSupportedId[src]

impl Hash for NotSupportedId[src]

impl Ord for NotSupportedId[src]

impl PartialEq<NotSupportedId> for NotSupportedId[src]

impl PartialOrd<NotSupportedId> for NotSupportedId[src]

impl StructuralEq for NotSupportedId[src]

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

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

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.