pub struct ActorStat {
pub env_steps: usize,
pub duration: Duration,
}
Expand description
Stats of sampling process in an Actor
.
Fields§
§env_steps: usize
The number of steps for interaction between agent and env.
duration: Duration
Duration of sampling loop in the Actor
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ActorStat
impl RefUnwindSafe for ActorStat
impl Send for ActorStat
impl Sync for ActorStat
impl Unpin for ActorStat
impl UnwindSafe for ActorStat
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