pub struct ExecStartLibpodBody {
pub detach: Option<bool>,
pub tty: Option<bool>,
pub h: Option<i64>,
pub w: Option<i64>,
}
Available on crate feature
v5
only.Fields§
§detach: Option<bool>
Detach from the command.
tty: Option<bool>
Allocate a pseudo-TTY.
h: Option<i64>
Height of the TTY session in characters. Tty must be set to true to use it.
w: Option<i64>
Width of the TTY session in characters. Tty must be set to true to use it.
Trait Implementations§
Source§impl Debug for ExecStartLibpodBody
impl Debug for ExecStartLibpodBody
Source§impl Default for ExecStartLibpodBody
impl Default for ExecStartLibpodBody
Source§fn default() -> ExecStartLibpodBody
fn default() -> ExecStartLibpodBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecStartLibpodBody
impl<'de> Deserialize<'de> for ExecStartLibpodBody
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
Auto Trait Implementations§
impl Freeze for ExecStartLibpodBody
impl RefUnwindSafe for ExecStartLibpodBody
impl Send for ExecStartLibpodBody
impl Sync for ExecStartLibpodBody
impl Unpin for ExecStartLibpodBody
impl UnwindSafe for ExecStartLibpodBody
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