59 lines
1.1 KiB
Rust
59 lines
1.1 KiB
Rust
use {
|
|
crate::{
|
|
async_engine::SpawnedFuture,
|
|
backend::{
|
|
Backend, Connector, ConnectorEvent, ConnectorId, ConnectorKernelId, DrmDeviceId, Mode,
|
|
},
|
|
video::drm::ConnectorType,
|
|
},
|
|
std::{any::Any, error::Error, rc::Rc},
|
|
};
|
|
|
|
pub struct DummyBackend;
|
|
|
|
impl Backend for DummyBackend {
|
|
fn run(self: Rc<Self>) -> SpawnedFuture<Result<(), Box<dyn Error>>> {
|
|
unreachable!();
|
|
}
|
|
|
|
fn into_any(self: Rc<Self>) -> Rc<dyn Any> {
|
|
self
|
|
}
|
|
}
|
|
|
|
pub struct DummyOutput {
|
|
pub id: ConnectorId,
|
|
}
|
|
|
|
impl Connector for DummyOutput {
|
|
fn id(&self) -> ConnectorId {
|
|
self.id
|
|
}
|
|
|
|
fn kernel_id(&self) -> ConnectorKernelId {
|
|
ConnectorKernelId {
|
|
ty: ConnectorType::Unknown(0),
|
|
idx: 0,
|
|
}
|
|
}
|
|
|
|
fn event(&self) -> Option<ConnectorEvent> {
|
|
None
|
|
}
|
|
|
|
fn on_change(&self, _cb: Rc<dyn Fn()>) {
|
|
// nothing
|
|
}
|
|
|
|
fn damage(&self) {
|
|
// nothing
|
|
}
|
|
|
|
fn drm_dev(&self) -> Option<DrmDeviceId> {
|
|
None
|
|
}
|
|
|
|
fn set_mode(&self, _mode: Mode) {
|
|
// nothing
|
|
}
|
|
}
|