Re-exports§
pub use algorithms::CancelAlgorithm;pub use algorithms::PullAlgorithm;pub use algorithms::StartAlgorithm;
Modules§
Structs§
Enums§
Functions§
- lock_
readable_ stream - Acquire a default reader for the stream, locking it. Subsequent
getReader()calls from JS will throw per spec. - tee_
readable_ stream - Tee a ReadableStream into two branches. The stream must not be locked or disturbed.
- try_
sync_ drain_ closed_ stream - Fast-path drain for a default-controller ReadableStream whose queue holds
all the data synchronously (e.g. the stream was enqueued in
start()and then closed). Bypasses the JS reader + Promise machinery, so user code that poisonsObject.prototype.thencannot swap the streamed chunks (WPTresponse-stream-with-broken-then).