pub struct DscdSweepConfig {
pub num_events: usize,
pub tau_min: f64,
pub tau_max: f64,
pub tau_steps: usize,
pub max_depth: Option<usize>,
pub dsfb_params: DsfbParams,
}Fields§
§num_events: usize§tau_min: f64§tau_max: f64§tau_steps: usize§max_depth: Option<usize>§dsfb_params: DsfbParamsImplementations§
Trait Implementations§
Source§impl Clone for DscdSweepConfig
impl Clone for DscdSweepConfig
Source§fn clone(&self) -> DscdSweepConfig
fn clone(&self) -> DscdSweepConfig
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 DscdSweepConfig
impl Debug for DscdSweepConfig
Auto Trait Implementations§
impl Freeze for DscdSweepConfig
impl RefUnwindSafe for DscdSweepConfig
impl Send for DscdSweepConfig
impl Sync for DscdSweepConfig
impl Unpin for DscdSweepConfig
impl UnsafeUnpin for DscdSweepConfig
impl UnwindSafe for DscdSweepConfig
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