pub struct TailData {
pub job_id: String,
pub stdout_tail: String,
pub stderr_tail: String,
pub truncated: bool,
pub encoding: String,
pub stdout_log_path: String,
pub stderr_log_path: String,
pub stdout_observed_bytes: u64,
pub stderr_observed_bytes: u64,
pub stdout_included_bytes: u64,
pub stderr_included_bytes: u64,
}Expand description
Response for tail command.
Fields§
§job_id: String§stdout_tail: String§stderr_tail: String§truncated: boolTrue when the output was truncated by tail_lines or max_bytes constraints.
encoding: String§stdout_log_path: StringAbsolute path to stdout.log for this job.
stderr_log_path: StringAbsolute path to stderr.log for this job.
stdout_observed_bytes: u64Size of stdout.log in bytes at the time of the tail read (0 if file absent).
stderr_observed_bytes: u64Size of stderr.log in bytes at the time of the tail read (0 if file absent).
stdout_included_bytes: u64UTF-8 byte length of the stdout_tail string included in this response.
stderr_included_bytes: u64UTF-8 byte length of the stderr_tail string included in this response.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TailData
impl<'de> Deserialize<'de> for TailData
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 TailData
impl RefUnwindSafe for TailData
impl Send for TailData
impl Sync for TailData
impl Unpin for TailData
impl UnsafeUnpin for TailData
impl UnwindSafe for TailData
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