17 lines
394 B
Rust
17 lines
394 B
Rust
use waynest::{
|
|
server::{Client, Dispatcher, Result},
|
|
wire::ObjectId,
|
|
};
|
|
|
|
pub use waynest::server::protocol::core::wayland::wl_output::*;
|
|
|
|
#[derive(Debug, Dispatcher, Default)]
|
|
pub struct Output;
|
|
|
|
impl WlOutput for Output {
|
|
/// https://wayland.app/protocols/wayland#wl_output:request:release
|
|
async fn release(&self, _client: &mut Client, _sender_id: ObjectId) -> Result<()> {
|
|
todo!()
|
|
}
|
|
}
|