pub struct ReflectionOptions {
pub distill_opts: DistillOptions,
pub dry_run: bool,
}Expand description
Options for run_reflection.
Fields§
§distill_opts: DistillOptionsOptions for the underlying distillation clustering step.
dry_run: boolWhen true: print what would be proposed without writing to the DB.
Trait Implementations§
Source§impl Clone for ReflectionOptions
impl Clone for ReflectionOptions
Source§fn clone(&self) -> ReflectionOptions
fn clone(&self) -> ReflectionOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReflectionOptions
impl Debug for ReflectionOptions
Source§impl Default for ReflectionOptions
impl Default for ReflectionOptions
Source§fn default() -> ReflectionOptions
fn default() -> ReflectionOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ReflectionOptions
impl RefUnwindSafe for ReflectionOptions
impl Send for ReflectionOptions
impl Sync for ReflectionOptions
impl Unpin for ReflectionOptions
impl UnsafeUnpin for ReflectionOptions
impl UnwindSafe for ReflectionOptions
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