pub struct ContainerLogsOptionsBuilder { /* private fields */ }
Expand description
Builder for ContainerLogsOptions
.
Implementations§
Source§impl ContainerLogsOptionsBuilder
impl ContainerLogsOptionsBuilder
pub fn show_stdout<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self
pub fn show_stderr<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self
pub fn since<VALUE: Into<Option<SystemTime>>>( &mut self, value: VALUE, ) -> &mut Self
pub fn until<VALUE: Into<Option<SystemTime>>>( &mut self, value: VALUE, ) -> &mut Self
pub fn timestamps<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self
pub fn follow<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self
pub fn tail<VALUE: Into<Option<String>>>(&mut self, value: VALUE) -> &mut Self
pub fn details<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self
Trait Implementations§
Source§impl Clone for ContainerLogsOptionsBuilder
impl Clone for ContainerLogsOptionsBuilder
Source§fn clone(&self) -> ContainerLogsOptionsBuilder
fn clone(&self) -> ContainerLogsOptionsBuilder
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for ContainerLogsOptionsBuilder
impl Default for ContainerLogsOptionsBuilder
Source§fn default() -> ContainerLogsOptionsBuilder
fn default() -> ContainerLogsOptionsBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ContainerLogsOptionsBuilder
impl RefUnwindSafe for ContainerLogsOptionsBuilder
impl Send for ContainerLogsOptionsBuilder
impl Sync for ContainerLogsOptionsBuilder
impl Unpin for ContainerLogsOptionsBuilder
impl UnwindSafe for ContainerLogsOptionsBuilder
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