Enum crossbus::address::QueueError
source · pub enum QueueError<T> {
Full(T),
Closed(T),
}Expand description
error types that occurs when sending an message to the queue.
Variants§
Full(T)
the queue reach the capcity and gets full
it will reject the message and return it
Closed(T)
the queue is closed and no longer receives message
it will reject the message and return it