MCPcopy Create free account
hub / github.com/algoscienceacademy/RustUI / Application

Interface Application

src/lib.rs:84–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82pub use renderer::Renderer;
83
84pub trait Application {
85 fn init(&mut self);
86 fn update(&mut self);
87 fn render(&self, renderer: &mut dyn Renderer);
88}
89
90pub struct RustUI {
91 window: Window,

Callers

nothing calls this directly

Implementers 7

basic_app.rsexample/basic_app.rs
todo_app.rsexamples/todo_app.rs
styled_app.rsexamples/src/styled_app.rs
animated_app.rsexamples/src/animated_app.rs
responsive_app.rsexamples/src/responsive_app.rs
counter.rsexamples/src/counter.rs
basic_app.rsexamples/src/basic_app.rs

Calls

no outgoing calls

Tested by

no test coverage detected