[][src]Constant constellation::RESOURCES_DEFAULT

pub const RESOURCES_DEFAULT: Resources;

The Resources returned by Resources::default(). Intended to be used as a placeholder in your application until you have a better idea as to resource requirements.

This example is not tested
pub const RESOURCES_DEFAULT: Resources = Resources {
    mem: 100 * Mem::MIB, // 100 MiB
    cpu: Cpu::CORE / 16, // 1/16th of a logical CPU core
};