5 lines
149 B
Rust
5 lines
149 B
Rust
use crate::Item;
|
|
|
|
#[derive(Clone, Debug, Default, glib::GBoxed)]
|
|
#[gboxed(type_name = "BoxedWindowList")]
|
|
pub struct BoxedWindowList(pub Vec<Item>);
|