Add stubs for other queues
This commit is contained in:
parent
6e91aef421
commit
6878652583
7 changed files with 38 additions and 5 deletions
12
src/queue/indexed.rs
Normal file
12
src/queue/indexed.rs
Normal file
|
@ -0,0 +1,12 @@
|
|||
use pyo3::prelude::*;
|
||||
|
||||
#[pyclass]
|
||||
pub struct IndexedQueue {}
|
||||
|
||||
#[pymethods]
|
||||
impl IndexedQueue {
|
||||
#[new]
|
||||
fn new() -> Self {
|
||||
Self {}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue