Struct bollard::container::StartContainerOptions
source · pub struct StartContainerOptions<T>{
pub detach_keys: T,
}
Expand description
Parameters used in the Start Container API
§Examples
use bollard::container::StartContainerOptions;
StartContainerOptions{
detach_keys: "ctrl-^"
};
Fields§
§detach_keys: T
Override the key sequence for detaching a container. Format is a single character [a-Z]
or
ctrl-<value>
where <value>
is one of: a-z
, @
, ^
, [
, ,
or _
.
Trait Implementations§
source§impl<T> Clone for StartContainerOptions<T>
impl<T> Clone for StartContainerOptions<T>
source§fn clone(&self) -> StartContainerOptions<T>
fn clone(&self) -> StartContainerOptions<T>
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<T> Debug for StartContainerOptions<T>
impl<T> Debug for StartContainerOptions<T>
source§impl<T> Default for StartContainerOptions<T>
impl<T> Default for StartContainerOptions<T>
source§fn default() -> StartContainerOptions<T>
fn default() -> StartContainerOptions<T>
Returns the “default value” for a type. Read more
source§impl<T> PartialEq for StartContainerOptions<T>
impl<T> PartialEq for StartContainerOptions<T>
source§impl<T> Serialize for StartContainerOptions<T>
impl<T> Serialize for StartContainerOptions<T>
impl<T> StructuralPartialEq for StartContainerOptions<T>
Auto Trait Implementations§
impl<T> Freeze for StartContainerOptions<T>where
T: Freeze,
impl<T> RefUnwindSafe for StartContainerOptions<T>where
T: RefUnwindSafe,
impl<T> Send for StartContainerOptions<T>where
T: Send,
impl<T> Sync for StartContainerOptions<T>where
T: Sync,
impl<T> Unpin for StartContainerOptions<T>where
T: Unpin,
impl<T> UnwindSafe for StartContainerOptions<T>where
T: UnwindSafe,
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,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)