pub struct Profile {
pub name: String,
pub description: Option<String>,
pub workbench: Option<String>,
pub env: Option<HashMap<String, String>>,
pub run_config: Option<RunProfileConfig>,
}Expand description
Represents a run profile from the configuration.
This struct contains the configuration for a specific run profile, including workbench settings, environment variables, and run options.
Fields§
§name: StringProfile name identifier.
description: Option<String>Human-readable description of the profile.
workbench: Option<String>Workbench type for this profile.
env: Option<HashMap<String, String>>Environment variables specific to this profile.
run_config: Option<RunProfileConfig>Run-specific configuration.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Profile
impl<'de> Deserialize<'de> for Profile
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 Profile
impl RefUnwindSafe for Profile
impl Send for Profile
impl Sync for Profile
impl Unpin for Profile
impl UnwindSafe for Profile
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