pub struct ContainerLogsParameter {
pub container_name: String,
pub follow: Option<bool>,
pub since: Option<bool>,
pub stdout: Option<bool>,
pub stderr: Option<bool>,
pub tail: Option<bool>,
pub timestamps: Option<bool>,
pub until: Option<bool>,
}Fields§
§container_name: String§follow: Option<bool>§since: Option<bool>§stdout: Option<bool>§stderr: Option<bool>§tail: Option<bool>§timestamps: Option<bool>§until: Option<bool>Trait Implementations§
Source§impl Clone for ContainerLogsParameter
impl Clone for ContainerLogsParameter
Source§fn clone(&self) -> ContainerLogsParameter
fn clone(&self) -> ContainerLogsParameter
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 ContainerLogsParameter
impl Debug for ContainerLogsParameter
Source§impl Default for ContainerLogsParameter
impl Default for ContainerLogsParameter
Source§fn default() -> ContainerLogsParameter
fn default() -> ContainerLogsParameter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContainerLogsParameter
impl<'de> Deserialize<'de> for ContainerLogsParameter
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
impl Eq for ContainerLogsParameter
Source§impl PartialEq for ContainerLogsParameter
impl PartialEq for ContainerLogsParameter
Source§impl Serialize for ContainerLogsParameter
impl Serialize for ContainerLogsParameter
impl StructuralPartialEq for ContainerLogsParameter
Auto Trait Implementations§
impl Freeze for ContainerLogsParameter
impl RefUnwindSafe for ContainerLogsParameter
impl Send for ContainerLogsParameter
impl Sync for ContainerLogsParameter
impl Unpin for ContainerLogsParameter
impl UnsafeUnpin for ContainerLogsParameter
impl UnwindSafe for ContainerLogsParameter
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