Files
server/src/wayland/core/output.rs
2025-07-05 19:51:40 -07:00

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!()
}
}