pub struct Config {
pub packages_path: Vec<PathBuf>,
pub local_packages_path: Option<PathBuf>,
pub release_packages_path: Option<PathBuf>,
pub max_cache_size: usize,
pub cache_expiration_secs: u64,
pub debug_logging: bool,
}Expand description
Configuration for the Rez LSP server.
Fields§
§packages_path: Vec<PathBuf>Package search paths
local_packages_path: Option<PathBuf>Local packages path
release_packages_path: Option<PathBuf>Release packages path
max_cache_size: usizeMaximum number of packages to cache
cache_expiration_secs: u64Cache expiration time in seconds
debug_logging: boolEnable debug logging
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnsafeUnpin for Config
impl UnwindSafe for Config
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