#![allow(unused_imports)] #![allow(clippy::all)] use super::*; use wasm_bindgen::prelude::*; #[cfg(web_sys_unstable_apis)] #[wasm_bindgen] extern "C" { # [wasm_bindgen (extends = :: js_sys :: Object , js_name = SerialOutputSignals)] #[derive(Debug, Clone, PartialEq, Eq)] #[doc = "The `SerialOutputSignals` dictionary."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `SerialOutputSignals`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] pub type SerialOutputSignals; #[cfg(web_sys_unstable_apis)] #[doc = "Get the `break` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `SerialOutputSignals`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] #[wasm_bindgen(method, getter = "break")] pub fn get_break(this: &SerialOutputSignals) -> Option; #[cfg(web_sys_unstable_apis)] #[doc = "Change the `break` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `SerialOutputSignals`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] #[wasm_bindgen(method, setter = "break")] pub fn set_break(this: &SerialOutputSignals, val: bool); #[cfg(web_sys_unstable_apis)] #[doc = "Get the `dataTerminalReady` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `SerialOutputSignals`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] #[wasm_bindgen(method, getter = "dataTerminalReady")] pub fn get_data_terminal_ready(this: &SerialOutputSignals) -> Option; #[cfg(web_sys_unstable_apis)] #[doc = "Change the `dataTerminalReady` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `SerialOutputSignals`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] #[wasm_bindgen(method, setter = "dataTerminalReady")] pub fn set_data_terminal_ready(this: &SerialOutputSignals, val: bool); #[cfg(web_sys_unstable_apis)] #[doc = "Get the `requestToSend` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `SerialOutputSignals`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] #[wasm_bindgen(method, getter = "requestToSend")] pub fn get_request_to_send(this: &SerialOutputSignals) -> Option; #[cfg(web_sys_unstable_apis)] #[doc = "Change the `requestToSend` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `SerialOutputSignals`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] #[wasm_bindgen(method, setter = "requestToSend")] pub fn set_request_to_send(this: &SerialOutputSignals, val: bool); } #[cfg(web_sys_unstable_apis)] impl SerialOutputSignals { #[doc = "Construct a new `SerialOutputSignals`."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `SerialOutputSignals`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] pub fn new() -> Self { #[allow(unused_mut)] let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new()); ret } #[cfg(web_sys_unstable_apis)] #[deprecated = "Use `set_break()` instead."] pub fn break_(&mut self, val: bool) -> &mut Self { self.set_break(val); self } #[cfg(web_sys_unstable_apis)] #[deprecated = "Use `set_data_terminal_ready()` instead."] pub fn data_terminal_ready(&mut self, val: bool) -> &mut Self { self.set_data_terminal_ready(val); self } #[cfg(web_sys_unstable_apis)] #[deprecated = "Use `set_request_to_send()` instead."] pub fn request_to_send(&mut self, val: bool) -> &mut Self { self.set_request_to_send(val); self } } #[cfg(web_sys_unstable_apis)] impl Default for SerialOutputSignals { fn default() -> Self { Self::new() } }