pub struct AnnealerConfig {
pub alpha: f32,
pub temperature_zero: f32,
pub temperature_end: f32,
pub iteration: usize,
}Fields§
§alpha: f32§temperature_zero: f32§temperature_end: f32§iteration: usizeTrait Implementations§
Source§impl Clone for AnnealerConfig
impl Clone for AnnealerConfig
Source§fn clone(&self) -> AnnealerConfig
fn clone(&self) -> AnnealerConfig
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 AnnealerConfig
impl Debug for AnnealerConfig
Source§impl PartialEq for AnnealerConfig
impl PartialEq for AnnealerConfig
impl Copy for AnnealerConfig
impl StructuralPartialEq for AnnealerConfig
Auto Trait Implementations§
impl Freeze for AnnealerConfig
impl RefUnwindSafe for AnnealerConfig
impl Send for AnnealerConfig
impl Sync for AnnealerConfig
impl Unpin for AnnealerConfig
impl UnwindSafe for AnnealerConfig
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