feat: wayland
This commit is contained in:
16
src/wayland/core/output.rs
Normal file
16
src/wayland/core/output.rs
Normal file
@@ -0,0 +1,16 @@
|
||||
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!()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user