pub struct NativeTsRuntimeConfig {
pub compiler_binary: PathBuf,
pub cache_dir: PathBuf,
pub working_dir: PathBuf,
}Expand description
Configuration for the native TypeScript runtime adapter.
Fields§
§compiler_binary: PathBufCompiler executable. Bare names use PATH; relative paths with a
directory component are resolved against the host process directory.
cache_dir: PathBufArtifact cache directory. Relative paths are resolved against the host process directory before the compiler changes its working directory.
working_dir: PathBufRuntime working directory. Relative paths are resolved against the host process directory, and workflow entrypoints are resolved from it.
Implementations§
Trait Implementations§
Source§impl Clone for NativeTsRuntimeConfig
impl Clone for NativeTsRuntimeConfig
Source§fn clone(&self) -> NativeTsRuntimeConfig
fn clone(&self) -> NativeTsRuntimeConfig
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 NativeTsRuntimeConfig
impl Debug for NativeTsRuntimeConfig
Auto Trait Implementations§
impl Freeze for NativeTsRuntimeConfig
impl RefUnwindSafe for NativeTsRuntimeConfig
impl Send for NativeTsRuntimeConfig
impl Sync for NativeTsRuntimeConfig
impl Unpin for NativeTsRuntimeConfig
impl UnsafeUnpin for NativeTsRuntimeConfig
impl UnwindSafe for NativeTsRuntimeConfig
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