pub struct CommandStopResponse {
pub job_id: JobId,
pub bucket_id: BucketId,
pub frames_total: u64,
pub events_emitted: u64,
pub bytes_total: u64,
}Expand description
Bounded response for command_stop (TC-3).
Mirrors PtyCommandStopResponse minus the PTY-only counters
(stdin_bytes_written, secret_prompts_total), which have no
meaning for a non-interactive combed command.
Fields§
§job_id: JobId§bucket_id: BucketId§frames_total: u64§events_emitted: u64§bytes_total: u64Trait Implementations§
Source§impl Clone for CommandStopResponse
impl Clone for CommandStopResponse
Source§fn clone(&self) -> CommandStopResponse
fn clone(&self) -> CommandStopResponse
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 CommandStopResponse
impl Debug for CommandStopResponse
Source§impl<'de> Deserialize<'de> for CommandStopResponse
impl<'de> Deserialize<'de> for CommandStopResponse
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
Auto Trait Implementations§
impl Freeze for CommandStopResponse
impl RefUnwindSafe for CommandStopResponse
impl Send for CommandStopResponse
impl Sync for CommandStopResponse
impl Unpin for CommandStopResponse
impl UnsafeUnpin for CommandStopResponse
impl UnwindSafe for CommandStopResponse
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