pub enum ObserverMode {
Never,
Always,
Every(u64),
NewBest,
}
Expand description
Indicates when to call an observer.
Always
calls the observer in every iteration, Every(X)
calls the observer every X
iterations, NewBest
calls the observer only when a new best parameter vector is found and
Never
deactivates the observer.
Variants§
Never
Never call the observer
Always
Call observer in every iteration
Every(u64)
Call observer every N iterations
NewBest
Call observer when new best is found
Trait Implementations§
Source§impl Clone for ObserverMode
impl Clone for ObserverMode
Source§fn clone(&self) -> ObserverMode
fn clone(&self) -> ObserverMode
Returns a copy 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 ObserverMode
impl Debug for ObserverMode
Source§impl Default for ObserverMode
impl Default for ObserverMode
Source§fn default() -> ObserverMode
fn default() -> ObserverMode
The default for ObserverMode
is Always
Source§impl<'de> Deserialize<'de> for ObserverMode
impl<'de> Deserialize<'de> for ObserverMode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ObserverMode
impl PartialEq for ObserverMode
Source§impl Serialize for ObserverMode
impl Serialize for ObserverMode
impl Copy for ObserverMode
impl Eq for ObserverMode
impl StructuralPartialEq for ObserverMode
Auto Trait Implementations§
impl Freeze for ObserverMode
impl RefUnwindSafe for ObserverMode
impl Send for ObserverMode
impl Sync for ObserverMode
impl Unpin for ObserverMode
impl UnwindSafe for ObserverMode
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,
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.