We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
From
TryFrom
Deque
It would be very useful to be able to create a Deque from a slice or a heapless Vec using the from() or try_from() methods.
from()
try_from()
For example:
let deq = Deque::<u8, 4>::try([1, 2, 3, 4]);