pub struct StoppingTime {
pub name: String,
pub filtration: String,
pub is_finite_as: bool,
}Expand description
Stopping time data.
Fields§
§name: String§filtration: String§is_finite_as: boolImplementations§
Source§impl StoppingTime
impl StoppingTime
Sourcepub fn first_hitting(set_name: &str, filtration: &str) -> Self
pub fn first_hitting(set_name: &str, filtration: &str) -> Self
First hitting time.
Sourcepub fn optional_stopping_description(&self) -> String
pub fn optional_stopping_description(&self) -> String
Optional stopping theorem: E[M_tau] = E[M_0] under UI conditions.
Trait Implementations§
Source§impl Clone for StoppingTime
impl Clone for StoppingTime
Source§fn clone(&self) -> StoppingTime
fn clone(&self) -> StoppingTime
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 StoppingTime
impl RefUnwindSafe for StoppingTime
impl Send for StoppingTime
impl Sync for StoppingTime
impl Unpin for StoppingTime
impl UnsafeUnpin for StoppingTime
impl UnwindSafe for StoppingTime
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