pub struct Pipe {
pub name: String,
inbound: Vec<u8>,
outbound: VecDeque<Vec<u8>>,
}Expand description
A virtual named pipe bound to one open file id.
Fields§
§name: StringLowercased pipe name (e.g. srvsvc).
inbound: Vec<u8>§outbound: VecDeque<Vec<u8>>Implementations§
Auto Trait Implementations§
impl Freeze for Pipe
impl RefUnwindSafe for Pipe
impl Send for Pipe
impl Sync for Pipe
impl Unpin for Pipe
impl UnsafeUnpin for Pipe
impl UnwindSafe for Pipe
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