pub struct RLTrainOutput<TO, P> {
pub policy: P,
pub item: TO,
}Expand description
A training output.
Fields§
§policy: PThe policy.
item: TOThe item.
Auto Trait Implementations§
impl<TO, P> Freeze for RLTrainOutput<TO, P>
impl<TO, P> RefUnwindSafe for RLTrainOutput<TO, P>where
P: RefUnwindSafe,
TO: RefUnwindSafe,
impl<TO, P> Send for RLTrainOutput<TO, P>
impl<TO, P> Sync for RLTrainOutput<TO, P>
impl<TO, P> Unpin for RLTrainOutput<TO, P>
impl<TO, P> UnsafeUnpin for RLTrainOutput<TO, P>where
P: UnsafeUnpin,
TO: UnsafeUnpin,
impl<TO, P> UnwindSafe for RLTrainOutput<TO, P>where
P: UnwindSafe,
TO: 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