pub struct BuildTasksPackageRuntime {
pub application_class: String,
pub capabilities: Option<BTreeMap<String, BuildTasksPackageRuntimeCapabilities>>,
pub dependencies: Vec<BuildTasksPackageRuntimeDependencies>,
pub metadata: Option<BTreeMap<String, String>>,
pub provider: String,
pub version: String,
}Expand description
the configuration required for the runtime application
Fields§
§application_class: Stringapplication entry point (main) to be executed
capabilities: Option<BTreeMap<String, BuildTasksPackageRuntimeCapabilities>>features offered by this runtime
dependencies: Vec<BuildTasksPackageRuntimeDependencies>list of dependencies needed to run the application
metadata: Option<BTreeMap<String, String>>set of metadata
provider: StringCamel main application provider, ie, Camel Quarkus
version: StringCamel K Runtime version
Trait Implementations§
Source§impl Clone for BuildTasksPackageRuntime
impl Clone for BuildTasksPackageRuntime
Source§fn clone(&self) -> BuildTasksPackageRuntime
fn clone(&self) -> BuildTasksPackageRuntime
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BuildTasksPackageRuntime
impl Debug for BuildTasksPackageRuntime
Source§impl Default for BuildTasksPackageRuntime
impl Default for BuildTasksPackageRuntime
Source§fn default() -> BuildTasksPackageRuntime
fn default() -> BuildTasksPackageRuntime
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BuildTasksPackageRuntime
impl<'de> Deserialize<'de> for BuildTasksPackageRuntime
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BuildTasksPackageRuntime
impl PartialEq for BuildTasksPackageRuntime
Source§impl Serialize for BuildTasksPackageRuntime
impl Serialize for BuildTasksPackageRuntime
impl StructuralPartialEq for BuildTasksPackageRuntime
Auto Trait Implementations§
impl Freeze for BuildTasksPackageRuntime
impl RefUnwindSafe for BuildTasksPackageRuntime
impl Send for BuildTasksPackageRuntime
impl Sync for BuildTasksPackageRuntime
impl Unpin for BuildTasksPackageRuntime
impl UnwindSafe for BuildTasksPackageRuntime
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more