Skip to main content

builder

Function builder 

Source
pub fn builder() -> ImageRunnerBuilder
Expand description

Create a new image runner builder.

This is the main entry point for the fluent API.

ยงExample

use cargo_image_runner::builder;

builder()
    .from_cargo_metadata()?
    .no_bootloader()
    .directory_output()
    .qemu()
    .run()