pub enum MessagingType {
StandardIo,
NamedPipe,
}Expand description
Enum representing messaging type of a spawned process.
Variants§
StandardIo
Communicate with a spawned process via standard I/O.
NamedPipe
Communicate with a spawned process via named pipes.
Trait Implementations§
Source§impl Clone for MessagingType
impl Clone for MessagingType
Source§fn clone(&self) -> MessagingType
fn clone(&self) -> MessagingType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MessagingType
impl Debug for MessagingType
Source§impl PartialEq for MessagingType
impl PartialEq for MessagingType
impl Eq for MessagingType
impl StructuralPartialEq for MessagingType
Auto Trait Implementations§
impl Freeze for MessagingType
impl RefUnwindSafe for MessagingType
impl Send for MessagingType
impl Sync for MessagingType
impl Unpin for MessagingType
impl UnwindSafe for MessagingType
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