blob: 924c0366f339655c7c3c0d579486a8577552f472 [file] [log] [blame]
#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = StreamPipeOptions)]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `StreamPipeOptions` dictionary."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `StreamPipeOptions`*"]
pub type StreamPipeOptions;
}
impl StreamPipeOptions {
#[doc = "Construct a new `StreamPipeOptions`."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `StreamPipeOptions`*"]
pub fn new() -> Self {
#[allow(unused_mut)]
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
ret
}
#[doc = "Change the `preventAbort` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `StreamPipeOptions`*"]
pub fn prevent_abort(&mut self, val: bool) -> &mut Self {
use wasm_bindgen::JsValue;
let r = ::js_sys::Reflect::set(
self.as_ref(),
&JsValue::from("preventAbort"),
&JsValue::from(val),
);
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
#[doc = "Change the `preventCancel` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `StreamPipeOptions`*"]
pub fn prevent_cancel(&mut self, val: bool) -> &mut Self {
use wasm_bindgen::JsValue;
let r = ::js_sys::Reflect::set(
self.as_ref(),
&JsValue::from("preventCancel"),
&JsValue::from(val),
);
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
#[doc = "Change the `preventClose` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `StreamPipeOptions`*"]
pub fn prevent_close(&mut self, val: bool) -> &mut Self {
use wasm_bindgen::JsValue;
let r = ::js_sys::Reflect::set(
self.as_ref(),
&JsValue::from("preventClose"),
&JsValue::from(val),
);
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
#[cfg(feature = "AbortSignal")]
#[doc = "Change the `signal` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `AbortSignal`, `StreamPipeOptions`*"]
pub fn signal(&mut self, val: &AbortSignal) -> &mut Self {
use wasm_bindgen::JsValue;
let r =
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("signal"), &JsValue::from(val));
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
}
impl Default for StreamPipeOptions {
fn default() -> Self {
Self::new()
}
}