pub struct NativeEnvironmentDetails {
pub build_command: Option<String>,
pub pre_deploy_command: Option<String>,
pub start_command: Option<String>,
}Expand description
NativeEnvironmentDetails
JSON schema
{
"type": "object",
"properties": {
"buildCommand": {
"type": "string"
},
"preDeployCommand": {
"type": "string"
},
"startCommand": {
"type": "string"
}
}
}Fields§
§build_command: Option<String>§pre_deploy_command: Option<String>§start_command: Option<String>Trait Implementations§
Source§impl Clone for NativeEnvironmentDetails
impl Clone for NativeEnvironmentDetails
Source§fn clone(&self) -> NativeEnvironmentDetails
fn clone(&self) -> NativeEnvironmentDetails
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NativeEnvironmentDetails
impl Debug for NativeEnvironmentDetails
Source§impl Default for NativeEnvironmentDetails
impl Default for NativeEnvironmentDetails
Source§impl<'de> Deserialize<'de> for NativeEnvironmentDetails
impl<'de> Deserialize<'de> for NativeEnvironmentDetails
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 From<NativeEnvironmentDetails> for EnvSpecificDetails
impl From<NativeEnvironmentDetails> for EnvSpecificDetails
Source§fn from(value: NativeEnvironmentDetails) -> Self
fn from(value: NativeEnvironmentDetails) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NativeEnvironmentDetails
impl RefUnwindSafe for NativeEnvironmentDetails
impl Send for NativeEnvironmentDetails
impl Sync for NativeEnvironmentDetails
impl Unpin for NativeEnvironmentDetails
impl UnsafeUnpin for NativeEnvironmentDetails
impl UnwindSafe for NativeEnvironmentDetails
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