pub struct BehaviorReplayObservation {
pub status: BehaviorReplayStatus,
pub output: Value,
pub command: Option<String>,
pub stdout_excerpt: Option<String>,
pub stderr_excerpt: Option<String>,
pub duration_ms: Option<u128>,
}Fields§
§status: BehaviorReplayStatus§output: Value§command: Option<String>§stdout_excerpt: Option<String>§stderr_excerpt: Option<String>§duration_ms: Option<u128>Trait Implementations§
Source§impl Clone for BehaviorReplayObservation
impl Clone for BehaviorReplayObservation
Source§fn clone(&self) -> BehaviorReplayObservation
fn clone(&self) -> BehaviorReplayObservation
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 moreSource§impl Debug for BehaviorReplayObservation
impl Debug for BehaviorReplayObservation
Source§impl<'de> Deserialize<'de> for BehaviorReplayObservation
impl<'de> Deserialize<'de> for BehaviorReplayObservation
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 PartialEq for BehaviorReplayObservation
impl PartialEq for BehaviorReplayObservation
Source§fn eq(&self, other: &BehaviorReplayObservation) -> bool
fn eq(&self, other: &BehaviorReplayObservation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BehaviorReplayObservation
impl StructuralPartialEq for BehaviorReplayObservation
Auto Trait Implementations§
impl Freeze for BehaviorReplayObservation
impl RefUnwindSafe for BehaviorReplayObservation
impl Send for BehaviorReplayObservation
impl Sync for BehaviorReplayObservation
impl Unpin for BehaviorReplayObservation
impl UnsafeUnpin for BehaviorReplayObservation
impl UnwindSafe for BehaviorReplayObservation
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