pub struct NativeEnvironmentDetailsPost {
pub build_command: Option<String>,
pub start_command: Option<String>,
}Expand description
Fields for native environment (runtime) services
JSON schema
{
"description": "Fields for native environment (runtime) services",
"type": "object",
"properties": {
"buildCommand": {
"type": "string"
},
"startCommand": {
"type": "string"
}
}
}Fields§
§build_command: Option<String>§start_command: Option<String>Trait Implementations§
Source§impl Clone for NativeEnvironmentDetailsPost
impl Clone for NativeEnvironmentDetailsPost
Source§fn clone(&self) -> NativeEnvironmentDetailsPost
fn clone(&self) -> NativeEnvironmentDetailsPost
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 NativeEnvironmentDetailsPost
impl Debug for NativeEnvironmentDetailsPost
Source§impl<'de> Deserialize<'de> for NativeEnvironmentDetailsPost
impl<'de> Deserialize<'de> for NativeEnvironmentDetailsPost
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<NativeEnvironmentDetailsPost> for EnvSpecificDetailsPost
impl From<NativeEnvironmentDetailsPost> for EnvSpecificDetailsPost
Source§fn from(value: NativeEnvironmentDetailsPost) -> Self
fn from(value: NativeEnvironmentDetailsPost) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NativeEnvironmentDetailsPost
impl RefUnwindSafe for NativeEnvironmentDetailsPost
impl Send for NativeEnvironmentDetailsPost
impl Sync for NativeEnvironmentDetailsPost
impl Unpin for NativeEnvironmentDetailsPost
impl UnsafeUnpin for NativeEnvironmentDetailsPost
impl UnwindSafe for NativeEnvironmentDetailsPost
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