Enum PipeServerState
enum PipeServerState {
Enabled,
}Expand description
Runtime state of a client’s assigned pipe server task.
Observed by the pipe server on each input record; determines whether the record is forwarded to the client over the named pipe.
Variants§
Enabled
Forward all input records to the client.
Trait Implementations§
§impl Clone for PipeServerState
impl Clone for PipeServerState
§fn clone(&self) -> PipeServerState
fn clone(&self) -> PipeServerState
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 more§impl Debug for PipeServerState
impl Debug for PipeServerState
§impl PartialEq for PipeServerState
impl PartialEq for PipeServerState
impl Copy for PipeServerState
impl Eq for PipeServerState
impl StructuralPartialEq for PipeServerState
Auto Trait Implementations§
impl Freeze for PipeServerState
impl RefUnwindSafe for PipeServerState
impl Send for PipeServerState
impl Sync for PipeServerState
impl Unpin for PipeServerState
impl UnwindSafe for PipeServerState
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.