pub struct ContainerGlobalConfig {
pub docker_host: String,
}Expand description
Global configuration for Container component. Plain Rust, no serde, with Default impl and builder methods. These are the fallback defaults when URI params are not set.
Fields§
§docker_host: StringThe Docker host URL (default: “unix:///var/run/docker.sock”).
Implementations§
Trait Implementations§
Source§impl Clone for ContainerGlobalConfig
impl Clone for ContainerGlobalConfig
Source§fn clone(&self) -> ContainerGlobalConfig
fn clone(&self) -> ContainerGlobalConfig
Returns a duplicate 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 ContainerGlobalConfig
impl Debug for ContainerGlobalConfig
Source§impl Default for ContainerGlobalConfig
impl Default for ContainerGlobalConfig
Source§impl PartialEq for ContainerGlobalConfig
impl PartialEq for ContainerGlobalConfig
impl StructuralPartialEq for ContainerGlobalConfig
Auto Trait Implementations§
impl Freeze for ContainerGlobalConfig
impl RefUnwindSafe for ContainerGlobalConfig
impl Send for ContainerGlobalConfig
impl Sync for ContainerGlobalConfig
impl Unpin for ContainerGlobalConfig
impl UnsafeUnpin for ContainerGlobalConfig
impl UnwindSafe for ContainerGlobalConfig
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