Struct imxrt_hal::dma::ReadHalf[][src]

pub struct ReadHalf<'a, E>(_);

Exposes the read-half of the circular buffer

Implementations

impl<'a, E: Element> ReadHalf<'a, E>[src]

pub fn pop(&mut self) -> Option<E>[src]

Pops an element from the circular buffer

See Circular::pop() for details.

pub fn peek(&self) -> Option<E>[src]

Peeks at the next element in the circular buffer

See Circular::peek() for details.

pub fn drain(&mut self) -> Drain<'_, E>

Notable traits for Drain<'a, E>

impl<'a, E: Element> Iterator for Drain<'a, E> type Item = E;
[src]

Drains elements from the circular buffer

See Circular::drain() for details.

Auto Trait Implementations

impl<'a, E> Send for ReadHalf<'a, E> where
    E: Element

impl<'a, E> !Sync for ReadHalf<'a, E>

impl<'a, E> Unpin for ReadHalf<'a, E>

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> Same<T> for T

type Output = T

Should always be Self

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.