[][src]Struct finny::FsmEventQueueArray

pub struct FsmEventQueueArray<F, A> where
    F: FsmBackend,
    A: Array<Item = <F as FsmBackend>::Events>,
    Self: Sized
{ /* fields omitted */ }

A heapless queue with a fixed size. Implemented using the arraydequeue crate.

Implementations

impl<F, A> FsmEventQueueArray<F, A> where
    F: FsmBackend,
    A: Array<Item = <F as FsmBackend>::Events>, 
[src]

pub fn new() -> Self[src]

Trait Implementations

impl<F, A> FsmEventQueue<F> for FsmEventQueueArray<F, A> where
    F: FsmBackend,
    A: Array<Item = <F as FsmBackend>::Events>, 
[src]

Auto Trait Implementations

impl<F, A> RefUnwindSafe for FsmEventQueueArray<F, A> where
    A: RefUnwindSafe,
    F: RefUnwindSafe,
    <A as Array>::Index: RefUnwindSafe
[src]

impl<F, A> Send for FsmEventQueueArray<F, A> where
    A: Send,
    F: Send,
    <A as Array>::Index: Send
[src]

impl<F, A> Sync for FsmEventQueueArray<F, A> where
    A: Sync,
    F: Sync,
    <A as Array>::Index: Sync
[src]

impl<F, A> Unpin for FsmEventQueueArray<F, A> where
    A: Unpin,
    F: Unpin,
    <A as Array>::Index: Unpin
[src]

impl<F, A> UnwindSafe for FsmEventQueueArray<F, A> where
    A: UnwindSafe,
    F: UnwindSafe,
    <A as Array>::Index: UnwindSafe
[src]

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.