pub struct WritableStream { /* private fields */ }
Expand description
WritableStream
s can be created from a raw JavaScript stream with
from_raw
, or from a Rust Sink
with from_sink
.
They can be converted into a raw JavaScript stream with
into_raw
, or into a Rust Sink
with into_sink
.
Implementations§
Source§impl WritableStream
impl WritableStream
Sourcepub fn from_raw(raw: WritableStream) -> Self
pub fn from_raw(raw: WritableStream) -> Self
Creates a new WritableStream
from a JavaScript stream.
Sourcepub fn from_sink<Si>(sink: Si) -> Self
pub fn from_sink<Si>(sink: Si) -> Self
Creates a new WritableStream
from a Sink
.
Items and errors must be represented as raw JsValue
s.
Use with
and/or sink_map_err
to convert a sink’s items to a JsValue
before passing it to this function.
Sourcepub fn as_raw(&self) -> &WritableStream
pub fn as_raw(&self) -> &WritableStream
Acquires a reference to the underlying JavaScript stream.
Sourcepub fn into_raw(self) -> WritableStream
pub fn into_raw(self) -> WritableStream
Consumes this WritableStream
, returning the underlying JavaScript stream.
Sourcepub fn is_locked(&self) -> bool
pub fn is_locked(&self) -> bool
Returns true
if the stream is locked to a writer.
Sourcepub async fn abort(&mut self) -> Result<(), JsValue>
pub async fn abort(&mut self) -> Result<(), JsValue>
Aborts the stream, signaling that the producer can no longer successfully write to the stream and it is to be immediately moved to an errored state, with any queued-up writes discarded.
If the stream is currently locked to a writer, then this returns an error.
Sourcepub async fn abort_with_reason(
&mut self,
reason: &JsValue,
) -> Result<(), JsValue>
pub async fn abort_with_reason( &mut self, reason: &JsValue, ) -> Result<(), JsValue>
Aborts the stream with the
given reason
, signaling that the producer can no longer successfully write to the stream
and it is to be immediately moved to an errored state, with any queued-up writes discarded.
If the stream is currently locked to a writer, then this returns an error.
Sourcepub fn get_writer(&mut self) -> WritableStreamDefaultWriter<'_>
pub fn get_writer(&mut self) -> WritableStreamDefaultWriter<'_>
Creates a writer and locks the stream to the new writer.
While the stream is locked, no other writer can be acquired until this one is released.
Panics if the stream is already locked to a writer. For a non-panicking variant,
use try_get_writer
.
Sourcepub fn try_get_writer(
&mut self,
) -> Result<WritableStreamDefaultWriter<'_>, Error>
pub fn try_get_writer( &mut self, ) -> Result<WritableStreamDefaultWriter<'_>, Error>
Sourcepub fn into_sink(self) -> IntoSink<'static>
pub fn into_sink(self) -> IntoSink<'static>
Converts this WritableStream
into a Sink
.
Items and errors are represented by their raw JsValue
.
Use with
and/or sink_map_err
on the returned stream to convert them to a more
appropriate type.
Panics if the stream is already locked to a writer. For a non-panicking variant,
use try_into_sink
.
Sourcepub fn try_into_sink(self) -> Result<IntoSink<'static>, (Error, Self)>
pub fn try_into_sink(self) -> Result<IntoSink<'static>, (Error, Self)>
Try to convert this WritableStream
into a Sink
.
Items and errors are represented by their raw JsValue
.
Use with
and/or sink_map_err
on the returned stream to convert them to a more
appropriate type.
If the stream is already locked to a writer, then this returns an error
along with the original WritableStream
.
Sourcepub fn into_async_write(self) -> IntoAsyncWrite<'static>
pub fn into_async_write(self) -> IntoAsyncWrite<'static>
Converts this WritableStream
into an AsyncWrite
.
The writable stream must accept Uint8Array
chunks.
Panics if the stream is already locked to a writer. For a non-panicking variant,
use try_into_async_write
.
Sourcepub fn try_into_async_write(
self,
) -> Result<IntoAsyncWrite<'static>, (Error, Self)>
pub fn try_into_async_write( self, ) -> Result<IntoAsyncWrite<'static>, (Error, Self)>
Try to convert this WritableStream
into an AsyncWrite
.
The writable stream must accept Uint8Array
chunks.
If the stream is already locked to a writer, then this returns an error
along with the original WritableStream
.