pub enum DockerLogStream {
Stdout,
Stderr,
Both,
}Expand description
Selected Docker log stream.
Variants§
Trait Implementations§
Source§impl Clone for DockerLogStream
impl Clone for DockerLogStream
Source§fn clone(&self) -> DockerLogStream
fn clone(&self) -> DockerLogStream
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DockerLogStream
impl Debug for DockerLogStream
Source§impl Default for DockerLogStream
impl Default for DockerLogStream
Source§fn default() -> DockerLogStream
fn default() -> DockerLogStream
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DockerLogStream
impl<'de> Deserialize<'de> for DockerLogStream
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
Source§impl PartialEq for DockerLogStream
impl PartialEq for DockerLogStream
Source§fn eq(&self, other: &DockerLogStream) -> bool
fn eq(&self, other: &DockerLogStream) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DockerLogStream
impl Serialize for DockerLogStream
impl Copy for DockerLogStream
impl Eq for DockerLogStream
impl StructuralPartialEq for DockerLogStream
Auto Trait Implementations§
impl Freeze for DockerLogStream
impl RefUnwindSafe for DockerLogStream
impl Send for DockerLogStream
impl Sync for DockerLogStream
impl Unpin for DockerLogStream
impl UnsafeUnpin for DockerLogStream
impl UnwindSafe for DockerLogStream
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.