pub struct Environment {
pub random: Arc<dyn Random>,
pub quota: Option<Arc<dyn Quota>>,
pub parallelism: Parallelism,
pub logger: Arc<dyn Fn(&str) + Send + Sync>,
pub is_experimental: bool,
}Expand description
Keeps track of environment specific information which influences algorithm behavior.
Fields§
§random: Arc<dyn Random>A wrapper on random generator.
quota: Option<Arc<dyn Quota>>A global execution quota.
parallelism: ParallelismKeeps data parallelism settings.
logger: Arc<dyn Fn(&str) + Send + Sync>An information logger.
is_experimental: boolA boolean flag which signalizes that experimental behavior is allowed.
Implementations§
Source§impl Environment
impl Environment
Sourcepub fn new_with_time_quota(max_time: Option<usize>) -> Environment
pub fn new_with_time_quota(max_time: Option<usize>) -> Environment
Creates an instance of Environment using optional time quota and defaults.
Trait Implementations§
Source§impl Clone for Environment
impl Clone for Environment
Source§fn clone(&self) -> Environment
fn clone(&self) -> Environment
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 Default for Environment
impl Default for Environment
Source§fn default() -> Environment
fn default() -> Environment
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for Environment
impl !RefUnwindSafe for Environment
impl Send for Environment
impl Sync for Environment
impl Unpin for Environment
impl !UnwindSafe for Environment
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