Struct podman_api::models::PodCreateOptions
source · [−]pub struct PodCreateOptions {Show 23 fields
pub cgroup_parent: Option<String>,
pub container_command: Option<String>,
pub container_conmon_pidfile: Option<String>,
pub container_name: Option<String>,
pub cpus: Option<f64>,
pub cpuset_cpus: Option<String>,
pub create_command: Option<Vec<String, Global>>,
pub device_read_bps: Option<Vec<String, Global>>,
pub devices: Option<Vec<String, Global>>,
pub exit_policy: Option<String>,
pub hostname: Option<String>,
pub infra: Option<bool>,
pub infra_image: Option<String>,
pub labels: Option<HashMap<String, String, RandomState>>,
pub name: Option<String>,
pub net: Option<NetOptions>,
pub pid: Option<String>,
pub security_opt: Option<Vec<String, Global>>,
pub share: Option<Vec<String, Global>>,
pub share_parent: Option<bool>,
pub sysctl: Option<Vec<String, Global>>,
pub volume: Option<Vec<String, Global>>,
pub volumes_from: Option<Vec<String, Global>>,
}
Expand description
The JSON tags below are made to match the respective field in ContainerCreateOptions for the purpose of mapping.
Fields
cgroup_parent: Option<String>
container_command: Option<String>
container_conmon_pidfile: Option<String>
container_name: Option<String>
cpus: Option<f64>
cpuset_cpus: Option<String>
create_command: Option<Vec<String, Global>>
device_read_bps: Option<Vec<String, Global>>
devices: Option<Vec<String, Global>>
exit_policy: Option<String>
hostname: Option<String>
infra: Option<bool>
infra_image: Option<String>
labels: Option<HashMap<String, String, RandomState>>
name: Option<String>
net: Option<NetOptions>
pid: Option<String>
security_opt: Option<Vec<String, Global>>
sysctl: Option<Vec<String, Global>>
volume: Option<Vec<String, Global>>
volumes_from: Option<Vec<String, Global>>
Trait Implementations
sourceimpl Clone for PodCreateOptions
impl Clone for PodCreateOptions
sourcefn clone(&self) -> PodCreateOptions
fn clone(&self) -> PodCreateOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for PodCreateOptions
impl Debug for PodCreateOptions
sourceimpl<'de> Deserialize<'de> for PodCreateOptions
impl<'de> Deserialize<'de> for PodCreateOptions
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<PodCreateOptions, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<PodCreateOptions, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<PodCreateOptions> for PodCreateOptions
impl PartialEq<PodCreateOptions> for PodCreateOptions
sourcefn eq(&self, other: &PodCreateOptions) -> bool
fn eq(&self, other: &PodCreateOptions) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl Serialize for PodCreateOptions
impl Serialize for PodCreateOptions
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PodCreateOptions
Auto Trait Implementations
impl RefUnwindSafe for PodCreateOptions
impl Send for PodCreateOptions
impl Sync for PodCreateOptions
impl Unpin for PodCreateOptions
impl UnwindSafe for PodCreateOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more