pub enum Replayability {
Deterministic,
BestEffort,
None,
}Expand description
Replayability level of the trace.
This enum enforces explicit acknowledgment of replay guarantees.
Variants§
Deterministic
Can be replayed with identical output (local inference)
BestEffort
Best effort, may vary slightly (temp=0 remote)
None
Cannot be replayed (external factors, safety layers)
Trait Implementations§
Source§impl Clone for Replayability
impl Clone for Replayability
Source§fn clone(&self) -> Replayability
fn clone(&self) -> Replayability
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 Replayability
impl Debug for Replayability
Source§impl Default for Replayability
impl Default for Replayability
Source§impl<'de> Deserialize<'de> for Replayability
impl<'de> Deserialize<'de> for Replayability
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
Source§impl Hash for Replayability
impl Hash for Replayability
Source§impl PartialEq for Replayability
impl PartialEq for Replayability
Source§impl Serialize for Replayability
impl Serialize for Replayability
impl Copy for Replayability
impl Eq for Replayability
impl StructuralPartialEq for Replayability
Auto Trait Implementations§
impl Freeze for Replayability
impl RefUnwindSafe for Replayability
impl Send for Replayability
impl Sync for Replayability
impl Unpin for Replayability
impl UnwindSafe for Replayability
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