pub struct Observer<O> { /* private fields */ }
Expand description
Container for observers which acts just like a single Observe
r by implementing Observe
on
it.
Implementations§
Trait Implementations§
Source§impl<O: ArgminOp> Observe<O> for Observer<O>
impl<O: ArgminOp> Observe<O> for Observer<O>
By implementing Observe
for Observer
we basically allow a set of Observer
s to be used
just like a single Observe
r.
Source§fn observe_init(&self, msg: &str, kv: &ArgminKV) -> Result<(), Error>
fn observe_init(&self, msg: &str, kv: &ArgminKV) -> Result<(), Error>
Initial observation
This is called after the initialization in an Executor
and gets the name of the solver as
string and a ArgminKV
which includes some solver-specific information.
Source§fn observe_iter(
&mut self,
state: &IterState<O>,
kv: &ArgminKV,
) -> Result<(), Error>
fn observe_iter( &mut self, state: &IterState<O>, kv: &ArgminKV, ) -> Result<(), Error>
This is called after every iteration and gets the current state
of the solver as well as
a KV
which can include solver-specific information
This respects the ObserverMode
: Every Observe
r is only called as often as specified.
Auto Trait Implementations§
impl<O> Freeze for Observer<O>
impl<O> RefUnwindSafe for Observer<O>
impl<O> !Send for Observer<O>
impl<O> !Sync for Observer<O>
impl<O> Unpin for Observer<O>
impl<O> UnwindSafe for Observer<O>
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