pub struct SACStepConfig {
pub gamma: f32,
pub tau: f32,
pub target_entropy: f32,
pub auto_entropy: bool,
}Expand description
SAC step configuration.
Fields§
§gamma: f32§tau: f32§target_entropy: f32§auto_entropy: boolTrait Implementations§
Source§impl Clone for SACStepConfig
impl Clone for SACStepConfig
Source§fn clone(&self) -> SACStepConfig
fn clone(&self) -> SACStepConfig
Returns a duplicate 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 SACStepConfig
impl Debug for SACStepConfig
Auto Trait Implementations§
impl Freeze for SACStepConfig
impl RefUnwindSafe for SACStepConfig
impl Send for SACStepConfig
impl Sync for SACStepConfig
impl Unpin for SACStepConfig
impl UnwindSafe for SACStepConfig
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