pub struct HittingTime {
pub from: State,
pub to: State,
pub expected_steps: f64,
pub variance: Option<f64>,
}Expand description
Expected hitting time from one state to another.
Fields§
§from: State§to: State§expected_steps: f64E[T_{from→to}].
variance: Option<f64>Var[T_{from→to}] if computable.
Trait Implementations§
Source§impl Clone for HittingTime
impl Clone for HittingTime
Source§fn clone(&self) -> HittingTime
fn clone(&self) -> HittingTime
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 moreAuto Trait Implementations§
impl Freeze for HittingTime
impl RefUnwindSafe for HittingTime
impl Send for HittingTime
impl Sync for HittingTime
impl Unpin for HittingTime
impl UnsafeUnpin for HittingTime
impl UnwindSafe for HittingTime
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