pub struct CommandReport {
pub command_id: Uuid,
pub command: String,
pub flags: Vec<String>,
pub started_at: DateTime<Utc>,
pub finished_at: DateTime<Utc>,
pub exit_code: i32,
pub truncated: bool,
}Expand description
Cooperative client telemetry, not proof that these were all browser actions. Retrying this report must never execute the command again. Browser output remains on the client and has no field in this telemetry protocol.
Fields§
§command_id: Uuid§command: String§flags: Vec<String>§started_at: DateTime<Utc>§finished_at: DateTime<Utc>§exit_code: i32§truncated: boolTrait Implementations§
Source§impl Clone for CommandReport
impl Clone for CommandReport
Source§fn clone(&self) -> CommandReport
fn clone(&self) -> CommandReport
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 CommandReport
impl Debug for CommandReport
Source§impl<'de> Deserialize<'de> for CommandReport
impl<'de> Deserialize<'de> for CommandReport
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 CommandReport
Source§impl PartialEq for CommandReport
impl PartialEq for CommandReport
Source§impl Serialize for CommandReport
impl Serialize for CommandReport
impl StructuralPartialEq for CommandReport
Source§impl Validate for CommandReport
impl Validate for CommandReport
Auto Trait Implementations§
impl Freeze for CommandReport
impl RefUnwindSafe for CommandReport
impl Send for CommandReport
impl Sync for CommandReport
impl Unpin for CommandReport
impl UnsafeUnpin for CommandReport
impl UnwindSafe for CommandReport
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