pub struct ConfigOptions {
pub use_system_environment: bool,
pub compare: Rc<Box<dyn Fn(&Syntax, &Syntax) -> Ordering>>,
pub classpath: Rc<Vec<String>>,
pub max_depth: usize,
pub max_include_depth: usize,
}
Fields§
§use_system_environment: bool
§compare: Rc<Box<dyn Fn(&Syntax, &Syntax) -> Ordering>>
§classpath: Rc<Vec<String>>
§max_depth: usize
§max_include_depth: usize
Implementations§
Trait Implementations§
Source§impl Clone for ConfigOptions
impl Clone for ConfigOptions
Source§fn clone(&self) -> ConfigOptions
fn clone(&self) -> ConfigOptions
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 moreSource§impl Debug for ConfigOptions
impl Debug for ConfigOptions
Source§impl Default for ConfigOptions
impl Default for ConfigOptions
Source§impl PartialEq for ConfigOptions
impl PartialEq for ConfigOptions
impl Eq for ConfigOptions
Auto Trait Implementations§
impl Freeze for ConfigOptions
impl !RefUnwindSafe for ConfigOptions
impl !Send for ConfigOptions
impl !Sync for ConfigOptions
impl Unpin for ConfigOptions
impl !UnwindSafe for ConfigOptions
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