pub(crate) type StreamPipeOptions = StreamPipeOptions;
Aliased Type§
struct StreamPipeOptions {
pub(crate) preventAbort: bool,
pub(crate) preventCancel: bool,
pub(crate) preventClose: bool,
}
Fields§
§preventAbort: bool
§preventCancel: bool
§preventClose: bool
Implementations
Source§impl StreamPipeOptions
impl StreamPipeOptions
pub(crate) fn empty() -> Self
pub(crate) fn new( cx: SafeJSContext, val: HandleValue<'_>, ) -> Result<ConversionResult<StreamPipeOptions>, ()>
Source§impl StreamPipeOptions
impl StreamPipeOptions
pub(crate) unsafe fn to_jsobject( &self, cx: *mut JSContext, obj: MutableHandleObject<'_>, )
Trait Implementations
Source§impl Default for StreamPipeOptions
impl Default for StreamPipeOptions
Source§impl FromJSValConvertible for StreamPipeOptions
impl FromJSValConvertible for StreamPipeOptions
Source§unsafe fn from_jsval(
cx: *mut JSContext,
value: HandleValue<'_>,
_option: (),
) -> Result<ConversionResult<StreamPipeOptions>, ()>
unsafe fn from_jsval( cx: *mut JSContext, value: HandleValue<'_>, _option: (), ) -> Result<ConversionResult<StreamPipeOptions>, ()>
Convert
val
to type Self
.
Optional configuration of type T
can be passed as the option
argument.
If it returns Err(())
, a JSAPI exception is pending.
If it returns Ok(Failure(reason))
, there is no pending JSAPI exception.