Struct stack_queue::StackQueue 
source · pub struct StackQueue<T: Sync + Sized + 'static, const N: usize = 512> { /* private fields */ }Expand description
Task queue designed for facilitating heapless auto-batching of tasks
Trait Implementations§
Auto Trait Implementations§
impl<T, const N: usize = 512> !RefUnwindSafe for StackQueue<T, N>
impl<T, const N: usize> Send for StackQueue<T, N>where T: Send,
impl<T, const N: usize = 512> !Sync for StackQueue<T, N>
impl<T, const N: usize> Unpin for StackQueue<T, N>where T: Unpin,
impl<T, const N: usize> UnwindSafe for StackQueue<T, N>where T: UnwindSafe,
Blanket Implementations§
source§impl<T> IntoSql for T
 
impl<T> IntoSql for T
source§fn into_sql<T>(self) -> Self::Expressionwhere
    Self: AsExpression<T> + Sized,
    T: SqlType + TypedExpressionType,
 
fn into_sql<T>(self) -> Self::Expressionwhere Self: AsExpression<T> + Sized, T: SqlType + TypedExpressionType,
Convert 
self to an expression for Diesel’s query builder. Read moresource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expressionwhere
    &'a Self: AsExpression<T>,
    T: SqlType + TypedExpressionType,
 
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expressionwhere &'a Self: AsExpression<T>, T: SqlType + TypedExpressionType,
Convert 
&self to an expression for Diesel’s query builder. Read more