pub struct EnvSyncOptions {
pub local_file: Option<PathBuf>,
pub template_file: PathBuf,
}
Expand description
Configuration options for environment file synchronization.
Fields§
§local_file: Option<PathBuf>
Path to the local environment file. If None, defaults to .env
in current directory.
template_file: PathBuf
Path to the template file that defines the desired structure.
Auto Trait Implementations§
impl Freeze for EnvSyncOptions
impl RefUnwindSafe for EnvSyncOptions
impl Send for EnvSyncOptions
impl Sync for EnvSyncOptions
impl Unpin for EnvSyncOptions
impl UnwindSafe for EnvSyncOptions
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