pub struct OutputProcess<'a, O: NitroOutput>(/* private fields */);Expand description
RAII struct that opens and closes an output process
Implementations§
Source§impl<'a, O> OutputProcess<'a, O>where
O: NitroOutput,
impl<'a, O> OutputProcess<'a, O>where
O: NitroOutput,
Trait Implementations§
Source§impl<O> Deref for OutputProcess<'_, O>where
O: NitroOutput,
impl<O> Deref for OutputProcess<'_, O>where
O: NitroOutput,
Source§impl<O> DerefMut for OutputProcess<'_, O>where
O: NitroOutput,
impl<O> DerefMut for OutputProcess<'_, O>where
O: NitroOutput,
Source§impl<O> Drop for OutputProcess<'_, O>where
O: NitroOutput,
impl<O> Drop for OutputProcess<'_, O>where
O: NitroOutput,
Auto Trait Implementations§
impl<'a, O> !UnwindSafe for OutputProcess<'a, O>
impl<'a, O> Freeze for OutputProcess<'a, O>
impl<'a, O> RefUnwindSafe for OutputProcess<'a, O>where
&'a mut O: RefUnwindSafe,
impl<'a, O> Send for OutputProcess<'a, O>
impl<'a, O> Sync for OutputProcess<'a, O>
impl<'a, O> Unpin for OutputProcess<'a, O>
impl<'a, O> UnsafeUnpin for OutputProcess<'a, O>where
&'a mut O: UnsafeUnpin,
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more