[][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.

pub const RESOURCES_DEFAULT: Resources = Resources {
    mem: 100 * 1024 * 1024, // 100 MiB
    cpu: 65536 / 16,        // 1/16th of a logical CPU core
};