mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-10 11:39:46 +00:00
605c633579
It's useless in its current shape and wrongly triggering on all types. See https://github.com/rust-lang/rust-clippy/issues/8045
18 lines
346 B
Rust
18 lines
346 B
Rust
#![allow(clippy::non_send_fields_in_send_ty)]
|
|
|
|
#[path = "../glupload.rs"]
|
|
mod glupload;
|
|
use glupload::*;
|
|
|
|
#[path = "../examples-common.rs"]
|
|
pub mod examples_common;
|
|
|
|
fn example_main() {
|
|
App::new(None)
|
|
.and_then(main_loop)
|
|
.unwrap_or_else(|e| eprintln!("Error! {}", e))
|
|
}
|
|
|
|
fn main() {
|
|
examples_common::run(example_main);
|
|
}
|