Struct shiplift::container::LogsOptionsBuilder[][src]

pub struct LogsOptionsBuilder { /* fields omitted */ }

Builder interface for LogsOptions

Implementations

impl LogsOptionsBuilder[src]

pub fn follow(&mut self, f: bool) -> &mut Self[src]

pub fn stdout(&mut self, s: bool) -> &mut Self[src]

pub fn stderr(&mut self, s: bool) -> &mut Self[src]

pub fn timestamps(&mut self, t: bool) -> &mut Self[src]

pub fn tail(&mut self, how_many: &str) -> &mut Self[src]

how_many can either be “all” or a to_string() of the number

pub fn since<Tz>(&mut self, timestamp: &DateTime<Tz>) -> &mut Self where
    Tz: TimeZone
[src]

pub fn build(&self) -> LogsOptions[src]

Trait Implementations

impl Default for LogsOptionsBuilder[src]

Auto Trait Implementations

impl RefUnwindSafe for LogsOptionsBuilder

impl Send for LogsOptionsBuilder

impl Sync for LogsOptionsBuilder

impl Unpin for LogsOptionsBuilder

impl UnwindSafe for LogsOptionsBuilder

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.