6 lines
123 B
Rust
6 lines
123 B
Rust
|
use super::StaticItem;
|
||
|
|
||
|
pub fn static_items() -> Box<dyn Iterator<Item = StaticItem>> {
|
||
|
Box::new(vec!().into_iter())
|
||
|
}
|