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 duplicate 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<'de> Deserialize<'de> for MessagingType
impl<'de> Deserialize<'de> for MessagingType
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
Source§impl PartialEq for MessagingType
impl PartialEq for MessagingType
Source§impl Serialize for MessagingType
impl Serialize 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