pub struct StepResult<S> {
pub next_state: S,
pub reward: f64,
pub done: bool,
pub truncated: bool,
}Expand description
The result of taking a step in an environment.
Fields§
§next_state: SThe updated state.
reward: f64The reward.
done: boolIf the environment reached a terminal state.
truncated: boolIf the environment reached its max length.
Auto Trait Implementations§
impl<S> Freeze for StepResult<S>where
S: Freeze,
impl<S> RefUnwindSafe for StepResult<S>where
S: RefUnwindSafe,
impl<S> Send for StepResult<S>where
S: Send,
impl<S> Sync for StepResult<S>where
S: Sync,
impl<S> Unpin for StepResult<S>where
S: Unpin,
impl<S> UnsafeUnpin for StepResult<S>where
S: UnsafeUnpin,
impl<S> UnwindSafe for StepResult<S>where
S: UnwindSafe,
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