pub struct AppRecipe {
pub id: Option<String>,
pub name: Option<String>,
pub version: Option<String>,
pub probe_version: Option<bool>,
pub exec: Option<String>,
pub command: Option<String>,
pub icon: Option<String>,
pub desktop: Option<RecipeDesktop>,
pub args: Option<Vec<String>>,
pub env: Option<BTreeMap<String, String>>,
pub working_dir: Option<String>,
}Fields§
§id: Option<String>§name: Option<String>§version: Option<String>§probe_version: Option<bool>§exec: Option<String>§command: Option<String>§icon: Option<String>§desktop: Option<RecipeDesktop>§args: Option<Vec<String>>§env: Option<BTreeMap<String, String>>§working_dir: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for AppRecipe
impl<'de> Deserialize<'de> for AppRecipe
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
Auto Trait Implementations§
impl Freeze for AppRecipe
impl RefUnwindSafe for AppRecipe
impl Send for AppRecipe
impl Sync for AppRecipe
impl Unpin for AppRecipe
impl UnsafeUnpin for AppRecipe
impl UnwindSafe for AppRecipe
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