pub struct PushWeightsConfig { /* private fields */ }Expand description
Configuration for push_weights_with_config.
Implementations§
Source§impl PushWeightsConfig
impl PushWeightsConfig
pub fn new(delta: f32, remove_total_weight: bool) -> Self
pub fn with_delta(self, delta: f32) -> Self
pub fn with_remove_total_weight(self, remove_total_weight: bool) -> Self
Trait Implementations§
Source§impl Clone for PushWeightsConfig
impl Clone for PushWeightsConfig
Source§fn clone(&self) -> PushWeightsConfig
fn clone(&self) -> PushWeightsConfig
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 PushWeightsConfig
impl Debug for PushWeightsConfig
Source§impl Default for PushWeightsConfig
impl Default for PushWeightsConfig
Source§impl PartialEq for PushWeightsConfig
impl PartialEq for PushWeightsConfig
Source§impl PartialOrd for PushWeightsConfig
impl PartialOrd for PushWeightsConfig
impl Copy for PushWeightsConfig
impl StructuralPartialEq for PushWeightsConfig
Auto Trait Implementations§
impl Freeze for PushWeightsConfig
impl RefUnwindSafe for PushWeightsConfig
impl Send for PushWeightsConfig
impl Sync for PushWeightsConfig
impl Unpin for PushWeightsConfig
impl UnwindSafe for PushWeightsConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more