pub struct ContainerLogsOptions {
pub show_stdout: bool,
pub show_stderr: bool,
pub since: Option<SystemTime>,
pub until: Option<SystemTime>,
pub timestamps: bool,
pub follow: bool,
pub tail: Option<String>,
pub details: bool,
}
Expand description
ContainerLogsOptions holds parameters to filter logs with.
Fields§
§show_stdout: bool
§show_stderr: bool
§since: Option<SystemTime>
§until: Option<SystemTime>
§timestamps: bool
§follow: bool
§tail: Option<String>
§details: bool
Trait Implementations§
Source§impl Clone for ContainerLogsOptions
impl Clone for ContainerLogsOptions
Source§fn clone(&self) -> ContainerLogsOptions
fn clone(&self) -> ContainerLogsOptions
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 Debug for ContainerLogsOptions
impl Debug for ContainerLogsOptions
Source§impl Default for ContainerLogsOptions
impl Default for ContainerLogsOptions
Source§fn default() -> ContainerLogsOptions
fn default() -> ContainerLogsOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ContainerLogsOptions
impl RefUnwindSafe for ContainerLogsOptions
impl Send for ContainerLogsOptions
impl Sync for ContainerLogsOptions
impl Unpin for ContainerLogsOptions
impl UnwindSafe for ContainerLogsOptions
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