pub struct TailData {
pub job_id: String,
pub stdout: String,
pub stderr: String,
pub encoding: String,
pub stdout_log_path: String,
pub stderr_log_path: String,
pub stdout_range: [u64; 2],
pub stderr_range: [u64; 2],
pub stdout_total_bytes: u64,
pub stderr_total_bytes: u64,
}Expand description
Response for tail command.
Fields§
§job_id: String§stdout: String§stderr: String§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_range: [u64; 2]Raw stdout byte range represented by stdout as [begin, end).
stderr_range: [u64; 2]Raw stderr byte range represented by stderr as [begin, end).
stdout_total_bytes: u64Total bytes currently observed in stdout.log.
stderr_total_bytes: u64Total bytes currently observed in stderr.log.
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