Calandiel

Results 52 issues of Calandiel

To quote from https://docs.rs/winit/latest/winit/index.html ``` Before you can create a Window, you first need to build an EventLoop. This is done with the EventLoop::new() function. use winit::event_loop::EventLoop; let event_loop =...

S - docs

Consider the following code: ```rust let config = ConfigBuilder::default() .set_time_level(LevelFilter::Error) .set_location_level(LevelFilter::Error) .build(); let _ = CombinedLogger::init(vec![ TermLogger::new( LevelFilter::Trace, config.clone(), TerminalMode::Mixed, ColorChoice::Auto, ), WriteLogger::new( LevelFilter::Trace, config, File::create("file.log").expect("Failed to create a file...