pub struct PmtlOracle { /* private fields */ }Expand description
An oracle for PMTL properties over timed, dense traces.
Implementations§
Trait Implementations§
Source§impl Clone for PmtlOracle
impl Clone for PmtlOracle
Source§fn clone(&self) -> PmtlOracle
fn clone(&self) -> PmtlOracle
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 PmtlOracle
impl Debug for PmtlOracle
Source§impl Oracle for PmtlOracle
impl Oracle for PmtlOracle
Source§fn output_assumes(&self) -> impl Iterator<Item = Option<bool>>
fn output_assumes(&self) -> impl Iterator<Item = Option<bool>>
Returns the values of the “assume” properties,
if already determined.
Source§fn output_guarantees(&self) -> impl Iterator<Item = Option<bool>>
fn output_guarantees(&self) -> impl Iterator<Item = Option<bool>>
Returns the values of the “guarantee” properties,
if already determined.
Source§fn final_output_assumes(&self) -> impl Iterator<Item = bool>
fn final_output_assumes(&self) -> impl Iterator<Item = bool>
As the trace ends, the values of the “assume” properties is determined to be either true or false.
Source§fn final_output_guarantees(&self) -> impl Iterator<Item = bool>
fn final_output_guarantees(&self) -> impl Iterator<Item = bool>
As the trace ends, the values of the “guarantee” properties is determined to be either true or false.
Source§fn update_state(&mut self, state: &[bool])
fn update_state(&mut self, state: &[bool])
Update the internal state of the
Oracle with the latest state of a temporal trace.Source§fn update_time(&mut self, time: Time)
fn update_time(&mut self, time: Time)
Update the internal state of the
Oracle with the latest state of a temporal trace.Auto Trait Implementations§
impl Freeze for PmtlOracle
impl RefUnwindSafe for PmtlOracle
impl Send for PmtlOracle
impl Sync for PmtlOracle
impl Unpin for PmtlOracle
impl UnsafeUnpin for PmtlOracle
impl UnwindSafe for PmtlOracle
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