Struct io_extras::raw::RawWriteable [−][src]
#[repr(transparent)]pub struct RawWriteable(_);
Expand description
A non-owning unsafe I/O handle that implements Write
. Write
functions
considered are safe, so this type requires unsafe
to construct.
This doesn’t implement Into*
or From*
traits.
Platform-specific behavior
On Posix-ish platforms, this writes to the handle as if it were a
File
. On Windows, this writes to a file-like handle as if it were a
File
, and to a socket-like handle as if it were a TcpStream
.
Trait Implementations
RawWriteable
doesn’t own its handle.
Like AsRawHandle::as_raw_handle
and AsRawSocket::as_raw_socket
but can return either type. Read more
RawWriteable
doesn’t own its handle.
Constructs a new I/O object from the specified raw handle. Read more
RawWriteable
doesn’t own its handle.
Like FromRawHandle::from_raw_handle
and
FromRawSocket::from_raw_socket
but can be passed either type. Read more
RawWriteable
doesn’t own its handle.
Like IntoRawHandle::into_raw_handle
and
IntoRawSocket::into_raw_socket
but can return either type. 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
can_vector
)Determines if this Write
r has an efficient write_vectored
implementation. Read more
Attempts to write an entire buffer into this writer. Read more
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
Auto Trait Implementations
impl RefUnwindSafe for RawWriteable
impl Send for RawWriteable
impl Sync for RawWriteable
impl Unpin for RawWriteable
impl UnwindSafe for RawWriteable
Blanket Implementations
Extracts the raw grip.
Mutably borrows from an owned value. Read more
Constructs Self
from the raw value.
Consume an RawGrip
and convert into a Self
. Read more
Consume self
and convert into an RawGrip
.