Struct openwhisk_rust::Exec
source · pub struct Exec {
pub kind: String,
pub code: String,
pub image: String,
pub init: String,
pub main: String,
pub components: Vec<String>,
pub binary: bool,
}
Expand description
Actions Execucatble properties
Fields§
§kind: String
Action’s Kind
code: String
Action’s Code
image: String
Action’s Image
init: String
Action’s Init method
main: String
Action’s Main method
components: Vec<String>
Action’s components
binary: bool
Toogled to true Action will be of binary
Trait Implementations§
source§impl<'de> Deserialize<'de> for Exec
impl<'de> Deserialize<'de> for Exec
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