Crate epi[−][src]
Backend-agnostic interface for writing apps using egui.
epi provides interfaces for window management, serialization and http requests.
An app written for epi can then be plugged into eframe,
the egui framework crate.
Start by looking at the App trait, and implement App::update.
Re-exports
pub use egui; |
Modules
| backend | You only need to look here if you are writing a backend for |
Structs
| DummyStorage | Stores nothing. |
| Frame | Represents the surroundings of your app. |
| IntegrationInfo | Information about the integration passed to the use app each frame. |
| WebInfo | Information about the web environment (if applicable). |
Constants
| APP_KEY |
|
Traits
| App | Implement this trait to write apps that can be compiled both natively using the |
| RepaintSignal | How to signal the |
| Storage | A place where you can store custom data in a way that persists when you restart the app. |
| TextureAllocator | How to allocate textures (images) to use in |