Struct miow::pipe::NamedPipe[][src]

pub struct NamedPipe(_);
Expand description

A named pipe that can accept connections.

Implementations

Creates a new initial named pipe.

This function is equivalent to:

use miow::pipe::NamedPipeBuilder;

NamedPipeBuilder::new(addr)
                 .first(true)
                 .inbound(true)
                 .outbound(true)
                 .out_buffer_size(65536)
                 .in_buffer_size(65536)
                 .create();

Waits until either a time-out interval elapses or an instance of the specified named pipe is available for connection.

If this function succeeds the process can create a File to connect to the named pipe.

Connects this named pipe to a client, blocking until one becomes available.

This function will call the ConnectNamedPipe function to await for a client to connect. This can be called immediately after the pipe is created, or after it has been disconnected from a previous client.

Issue a connection request with the specified overlapped operation.

This function will issue a request to connect a client to this server, returning immediately after starting the overlapped operation.

If this function immediately succeeds then Ok(true) is returned. If the overlapped operation is enqueued and pending, then Ok(false) is returned. Otherwise an error is returned indicating what went wrong.

Unsafety

This function is unsafe because the kernel requires that the overlapped pointer is valid until the end of the I/O operation. The kernel also requires that overlapped is unique for this I/O operation and is not in use for any other I/O.

To safely use this function callers must ensure that this pointer is valid until the I/O operation is completed, typically via completion ports and waiting to receive the completion notification on the port.

Disconnects this named pipe from any connected client.

Issues an overlapped read operation to occur on this pipe.

This function will issue an asynchronous read to occur in an overlapped fashion, returning immediately. The buf provided will be filled in with data and the request is tracked by the overlapped function provided.

If the operation succeeds immediately, Ok(Some(n)) is returned where n is the number of bytes read. If an asynchronous operation is enqueued, then Ok(None) is returned. Otherwise if an error occurred it is returned.

When this operation completes (or if it completes immediately), another mechanism must be used to learn how many bytes were transferred (such as looking at the filed in the IOCP status message).

Unsafety

This function is unsafe because the kernel requires that the buf and overlapped pointers to be valid until the end of the I/O operation. The kernel also requires that overlapped is unique for this I/O operation and is not in use for any other I/O.

To safely use this function callers must ensure that the pointers are valid until the I/O operation is completed, typically via completion ports and waiting to receive the completion notification on the port.

Issues an overlapped write operation to occur on this pipe.

This function will issue an asynchronous write to occur in an overlapped fashion, returning immediately. The buf provided will be filled in with data and the request is tracked by the overlapped function provided.

If the operation succeeds immediately, Ok(Some(n)) is returned where n is the number of bytes written. If an asynchronous operation is enqueued, then Ok(None) is returned. Otherwise if an error occurred it is returned.

When this operation completes (or if it completes immediately), another mechanism must be used to learn how many bytes were transferred (such as looking at the filed in the IOCP status message).

Unsafety

This function is unsafe because the kernel requires that the buf and overlapped pointers to be valid until the end of the I/O operation. The kernel also requires that overlapped is unique for this I/O operation and is not in use for any other I/O.

To safely use this function callers must ensure that the pointers are valid until the I/O operation is completed, typically via completion ports and waiting to receive the completion notification on the port.

Calls the GetOverlappedResult function to get the result of an overlapped operation for this handle.

This function takes the OVERLAPPED argument which must have been used to initiate an overlapped I/O operation, and returns either the successful number of bytes transferred during the operation or an error if one occurred.

Unsafety

This function is unsafe as overlapped must have previously been used to execute an operation for this handle, and it must also be a valid pointer to an Overlapped instance.

Panics

This function will panic

Trait Implementations

Extracts the raw handle, without taking any ownership.

Formats the value using the given formatter. Read more

Constructs a new I/O object from the specified raw handle. Read more

Consumes this object, returning the raw underlying handle. Read more

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more

Like read, except that it reads into a slice of buffers. Read more

🔬 This is a nightly-only experimental API. (can_vector)

Determines if this Reader has an efficient read_vectored implementation. Read more

🔬 This is a nightly-only experimental API. (read_initializer)

Determines if this Reader can work with buffers of uninitialized memory. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read all bytes until EOF in this source, appending them to buf. Read more

Read the exact number of bytes required to fill buf. Read more

Creates a “by reference” adapter for this instance of Read. Read more

Transforms this Read instance to an Iterator over its bytes. Read more

Creates an adapter which will chain this stream with another. Read more

Creates an adapter which will read at most limit bytes from it. Read more

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more

Like read, except that it reads into a slice of buffers. Read more

🔬 This is a nightly-only experimental API. (can_vector)

Determines if this Reader has an efficient read_vectored implementation. Read more

🔬 This is a nightly-only experimental API. (read_initializer)

Determines if this Reader can work with buffers of uninitialized memory. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read all bytes until EOF in this source, appending them to buf. Read more

Read the exact number of bytes required to fill buf. Read more

Creates a “by reference” adapter for this instance of Read. Read more

Transforms this Read instance to an Iterator over its bytes. Read more

Creates an adapter which will chain this stream with another. Read more

Creates an adapter which will read at most limit bytes from it. Read more

Write a buffer into this writer, returning how many bytes were written. Read more

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

Like write, except that it writes from a slice of buffers. Read more

🔬 This is a nightly-only experimental API. (can_vector)

Determines if this Writer has an efficient write_vectored implementation. Read more

Attempts to write an entire buffer into this writer. Read more

🔬 This is a nightly-only experimental API. (write_all_vectored)

Attempts to write multiple buffers into this writer. Read more

Writes a formatted string into this writer, returning any error encountered. Read more

Creates a “by reference” adapter for this instance of Write. Read more

Write a buffer into this writer, returning how many bytes were written. Read more

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

Like write, except that it writes from a slice of buffers. Read more

🔬 This is a nightly-only experimental API. (can_vector)

Determines if this Writer has an efficient write_vectored implementation. Read more

Attempts to write an entire buffer into this writer. Read more

🔬 This is a nightly-only experimental API. (write_all_vectored)

Attempts to write multiple buffers into this writer. Read more

Writes a formatted string into this writer, returning any error encountered. Read more

Creates a “by reference” adapter for this instance of Write. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.