pub struct TailOpts<'a> {
pub job_id: &'a str,
pub root: Option<&'a str>,
pub tail_lines: u64,
pub max_bytes: u64,
}Expand description
Options for the tail sub-command.
Fields§
§job_id: &'a str§root: Option<&'a str>§tail_lines: u64Number of lines to show from the end of each log.
max_bytes: u64Maximum bytes to read from the end of each log.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for TailOpts<'a>
impl<'a> RefUnwindSafe for TailOpts<'a>
impl<'a> Send for TailOpts<'a>
impl<'a> Sync for TailOpts<'a>
impl<'a> Unpin for TailOpts<'a>
impl<'a> UnsafeUnpin for TailOpts<'a>
impl<'a> UnwindSafe for TailOpts<'a>
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