| Crates.io | epi_http |
| lib.rs | epi_http |
| version | 0.12.0 |
| created_at | 2021-03-17 16:59:21.858132+00 |
| updated_at | 2021-05-28 12:59:06.7801+00 |
| description | epi::http implementation for any egui backends |
| homepage | |
| repository | |
| max_upload_size | |
| id | 370214 |
| size | 7,751 |
epi::http implementation this enables all of egui platform have http download capability
#[cfg(feature="http")]
let http=Arc::new( epi_http::EpiHttp{} );
// some initialization code here
loop{
let frame = FrameBuilder{
info: IntegrationInfo,
tex_allocator: &mut tex_allocator,
repaint_signal: repaint_signal.clone(),
output: &mut app_output,
#[cfg(feature="http")]
http: http.clone(),
}
}