pub struct ApplicationConfig {
pub entry_point: String,
pub runtime: RuntimeType,
pub environment: HashMap<String, String>,
pub build_command: Option<String>,
pub start_command: Option<String>,
}
Expand description
アプリケーション設定
Fields§
§entry_point: String
エントリーポイント
runtime: RuntimeType
ランタイムタイプ
environment: HashMap<String, String>
環境変数
build_command: Option<String>
ビルドコマンド
start_command: Option<String>
スタートコマンド
Trait Implementations§
Source§impl Clone for ApplicationConfig
impl Clone for ApplicationConfig
Source§fn clone(&self) -> ApplicationConfig
fn clone(&self) -> ApplicationConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 ApplicationConfig
impl Debug for ApplicationConfig
Source§impl<'de> Deserialize<'de> for ApplicationConfig
impl<'de> Deserialize<'de> for ApplicationConfig
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 ApplicationConfig
impl RefUnwindSafe for ApplicationConfig
impl Send for ApplicationConfig
impl Sync for ApplicationConfig
impl Unpin for ApplicationConfig
impl UnwindSafe for ApplicationConfig
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