pub enum EstimationCompleteness {
Complete,
Conservative,
PersistentStateOnly,
}Expand description
Coverage of a runtime-state estimate.
Variants§
Complete
Persistent request state is modeled exactly.
Conservative
The estimate is a complete safe upper bound.
PersistentStateOnly
Persistent state is covered but execution transients are not.
Trait Implementations§
Source§impl Clone for EstimationCompleteness
impl Clone for EstimationCompleteness
Source§fn clone(&self) -> EstimationCompleteness
fn clone(&self) -> EstimationCompleteness
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EstimationCompleteness
Source§impl Debug for EstimationCompleteness
impl Debug for EstimationCompleteness
Source§impl<'de> Deserialize<'de> for EstimationCompleteness
impl<'de> Deserialize<'de> for EstimationCompleteness
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for EstimationCompleteness
Source§impl PartialEq for EstimationCompleteness
impl PartialEq for EstimationCompleteness
Source§impl Serialize for EstimationCompleteness
impl Serialize for EstimationCompleteness
impl StructuralPartialEq for EstimationCompleteness
Auto Trait Implementations§
impl Freeze for EstimationCompleteness
impl RefUnwindSafe for EstimationCompleteness
impl Send for EstimationCompleteness
impl Sync for EstimationCompleteness
impl Unpin for EstimationCompleteness
impl UnsafeUnpin for EstimationCompleteness
impl UnwindSafe for EstimationCompleteness
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