[][src]Struct bootimage::config::Config

pub struct Config {
    pub default_target: Option<String>,
    pub run_command: Vec<String>,
    pub run_args: Option<Vec<String>>,
    pub test_args: Option<Vec<String>>,
    pub test_timeout: u32,
    pub test_success_exit_code: Option<i32>,
    // some fields omitted
}

Represents the package.metadata.bootimage configuration table

The bootimage crate can be configured through a package.metadata.bootimage table in the Cargo.toml file of the kernel. This struct represents the parsed configuration options.

Fields

default_target: Option<String>

This target is used if no --target argument is passed

run_command: Vec<String>

The run command that is invoked on bootimage run or bootimage runner

The substring "{}" will be replaced with the path to the bootable disk image.

run_args: Option<Vec<String>>

Additional arguments passed to the runner for not-test binaries

Applies to bootimage run and bootimage runner.

test_args: Option<Vec<String>>

Additional arguments passed to the runner for test binaries

Applies to bootimage runner.

test_timeout: u32

The timeout for running an test through bootimage test or bootimage runner in seconds

test_success_exit_code: Option<i32>

An exit code that should be considered as success for test executables (applies to bootimage runner)

Trait Implementations

impl Clone for Config[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Config[src]

Auto Trait Implementations

impl Sync for Config

impl Unpin for Config

impl Send for Config

impl UnwindSafe for Config

impl RefUnwindSafe for Config

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]