pub struct SimOpts {
pub sample_limit: usize,
pub impact_buckets: Vec<String>,
}Expand description
Simulation options.
Fields§
§sample_limit: usizeMaximum number of changed keys included in sample output.
impact_buckets: Vec<String>Optional impact bucket globs (e.g. textures/**, meshes/**).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SimOpts
impl RefUnwindSafe for SimOpts
impl Send for SimOpts
impl Sync for SimOpts
impl Unpin for SimOpts
impl UnsafeUnpin for SimOpts
impl UnwindSafe for SimOpts
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more