pub struct EnginePaths {
pub cache_dir: PathBuf,
pub pid_file: PathBuf,
pub lock_file: PathBuf,
pub ready_file: PathBuf,
pub engine_log_file: PathBuf,
pub client_log_file: PathBuf,
}Expand description
File paths used by the engine lifecycle manager.
Fields§
§cache_dir: PathBuf§pid_file: PathBuf§lock_file: PathBuf§ready_file: PathBuf§engine_log_file: PathBuf§client_log_file: PathBufImplementations§
Trait Implementations§
Source§impl Clone for EnginePaths
impl Clone for EnginePaths
Source§fn clone(&self) -> EnginePaths
fn clone(&self) -> EnginePaths
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 moreAuto Trait Implementations§
impl Freeze for EnginePaths
impl RefUnwindSafe for EnginePaths
impl Send for EnginePaths
impl Sync for EnginePaths
impl Unpin for EnginePaths
impl UnsafeUnpin for EnginePaths
impl UnwindSafe for EnginePaths
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