Struct lxc_sys::lxc_attach_options_t[][src]

#[repr(C)]pub struct lxc_attach_options_t {
    pub attach_flags: c_int,
    pub namespaces: c_int,
    pub personality: c_long,
    pub initial_cwd: *mut c_char,
    pub uid: uid_t,
    pub gid: gid_t,
    pub env_policy: lxc_attach_env_policy_t,
    pub extra_env_vars: *mut *mut c_char,
    pub extra_keep_env: *mut *mut c_char,
    pub stdin_fd: c_int,
    pub stdout_fd: c_int,
    pub stderr_fd: c_int,
    pub log_fd: c_int,
}

Fields

attach_flags: c_intnamespaces: c_intpersonality: c_longinitial_cwd: *mut c_charuid: uid_tgid: gid_tenv_policy: lxc_attach_env_policy_textra_env_vars: *mut *mut c_charextra_keep_env: *mut *mut c_charstdin_fd: c_intstdout_fd: c_intstderr_fd: c_intlog_fd: c_int

Trait Implementations

impl Clone for lxc_attach_options_t[src]

impl Copy for lxc_attach_options_t[src]

impl Debug for lxc_attach_options_t[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.