pub struct Options {
pub env: Option<HashMap<String, String>>,
pub region: Option<String>,
pub lang: Option<String>,
pub base_path: Option<String>,
pub max_include_depth: Option<usize>,
pub _include_depth: usize,
pub packages_path: Option<String>,
}Expand description
Options for active mode resolution.
Fields§
§env: Option<HashMap<String, String>>§region: Option<String>§lang: Option<String>§base_path: Option<String>§max_include_depth: Option<usize>Maximum depth for nested :include / :import / :watch file reads (default: 16).
_include_depth: usizeInternal counter — do not set manually.
packages_path: Option<String>Path to installed packages directory (default: “./synx_packages”).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Options
impl RefUnwindSafe for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnsafeUnpin for Options
impl UnwindSafe for Options
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