Struct podman_api::models::PodCreateOptions
source · [−]pub struct PodCreateOptions {Show 16 fields
pub c_group_parent: Option<String>,
pub cpus: Option<f32>,
pub cpuset_cpus: Option<String>,
pub create_command: Option<Vec<String, Global>>,
pub hostname: Option<String>,
pub infra: Option<bool>,
pub infra_command: Option<String>,
pub infra_conmon_pid_file: Option<String>,
pub infra_image: Option<String>,
pub infra_name: Option<String>,
pub labels: Option<HashMap<String, String, RandomState>>,
pub name: Option<String>,
pub net: Option<NetOptions>,
pub pid: Option<String>,
pub share: Option<Vec<String, Global>>,
pub userns: Option<Namespace>,
}
Expand description
PodCreateOptions provides all possible options for creating a pod and its infra container
Fields
c_group_parent: Option<String>
cpus: Option<f32>
cpuset_cpus: Option<String>
create_command: Option<Vec<String, Global>>
hostname: Option<String>
infra: Option<bool>
infra_command: Option<String>
infra_conmon_pid_file: Option<String>
infra_image: Option<String>
infra_name: Option<String>
labels: Option<HashMap<String, String, RandomState>>
name: Option<String>
net: Option<NetOptions>
pid: Option<String>
userns: Option<Namespace>
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
sourcefn ne(&self, other: &PodCreateOptions) -> bool
fn ne(&self, other: &PodCreateOptions) -> bool
This method tests for !=
.
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> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
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