[][src]Struct usb_device::bus::UsbBusAllocator

pub struct UsbBusAllocator<B: UsbBus> { /* fields omitted */ }

Helper type used for UsbBus resource allocation and initialization.

Methods

impl<B: UsbBus> UsbBusAllocator<B>
[src]

pub fn new(bus: B) -> UsbBusAllocator<B>
[src]

Creates a new UsbBusAllocator that wraps the provided UsbBus. Usually only called by USB driver implementations.

pub fn interface(&self) -> InterfaceNumber
[src]

Allocates a new interface number.

pub fn string(&self) -> StringIndex
[src]

Allocates a new string index.

pub fn alloc<'a, D: EndpointDirection>(
    &self,
    ep_addr: Option<EndpointAddress>,
    ep_type: EndpointType,
    max_packet_size: u16,
    interval: u8
) -> Result<Endpoint<B, D>>
[src]

Allocates an endpoint with the specified direction and address.

This directly delegates to UsbBus::alloc_ep, so see that method for details. This should rarely be needed by classes.

pub fn control<D: EndpointDirection>(
    &self,
    max_packet_size: u16
) -> Endpoint<B, D>
[src]

Allocates a control endpoint.

This crate implements the control state machine only for endpoint 0. If classes want to support control requests in other endpoints, the state machine must be implemented manually. This should rarely be needed by classes.

Arguments

  • max_packet_size - Maximum packet size in bytes. Must be one of 8, 16, 32 or 64.

pub fn bulk<D: EndpointDirection>(&self, max_packet_size: u16) -> Endpoint<B, D>
[src]

Allocates a bulk endpoint.

Arguments

  • max_packet_size - Maximum packet size in bytes. Must be one of 8, 16, 32 or 64.

pub fn interrupt<D: EndpointDirection>(
    &self,
    max_packet_size: u16,
    interval: u8
) -> Endpoint<B, D>
[src]

Allocates an interrupt endpoint.

  • max_packet_size - Maximum packet size in bytes. Cannot exceed 64 bytes.

Auto Trait Implementations

impl<B> Send for UsbBusAllocator<B> where
    B: Send

impl<B> !Sync for UsbBusAllocator<B>

Blanket Implementations

impl<T> From for T
[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]