pub struct PosixSpawnFileActions { /* private fields */ }
Expand description
A spawn file actions object. See posix_spawn_file_actions_t.
Implementations§
Source§impl PosixSpawnFileActions
impl PosixSpawnFileActions
Sourcepub fn init() -> Result<PosixSpawnFileActions>
pub fn init() -> Result<PosixSpawnFileActions>
Initialize the spawn file actions object. See posix_spawn_file_actions_init.
Sourcepub fn reinit(self) -> Result<PosixSpawnFileActions>
pub fn reinit(self) -> Result<PosixSpawnFileActions>
Reinitialize the spawn file actions object. This is a wrapper around posix_spawn_file_actions_destroy. followed by posix_spawn_file_actions_init.
Trait Implementations§
Source§impl Debug for PosixSpawnFileActions
impl Debug for PosixSpawnFileActions
Auto Trait Implementations§
impl Freeze for PosixSpawnFileActions
impl RefUnwindSafe for PosixSpawnFileActions
impl !Send for PosixSpawnFileActions
impl !Sync for PosixSpawnFileActions
impl Unpin for PosixSpawnFileActions
impl UnwindSafe for PosixSpawnFileActions
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