pub enum WebTransportReliabilityMode {
Pending = 0,
ReliableOnly = 1,
SupportsUnreliable = 2,
// some variants omitted
}
Expand description
The WebTransportReliabilityMode
enum.
This API requires the following crate features to be activated: WebTransportReliabilityMode
This API is unstable and requires --cfg=web_sys_unstable_apis
to be activated, as
described in the wasm-bindgen
guide
Variants§
Implementations§
source§impl WebTransportReliabilityMode
impl WebTransportReliabilityMode
pub fn from_js_value(obj: &JsValue) -> Option<WebTransportReliabilityMode>
Trait Implementations§
source§impl Clone for WebTransportReliabilityMode
impl Clone for WebTransportReliabilityMode
source§fn clone(&self) -> WebTransportReliabilityMode
fn clone(&self) -> WebTransportReliabilityMode
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for WebTransportReliabilityMode
impl Debug for WebTransportReliabilityMode
source§impl From<WebTransportReliabilityMode> for JsValue
impl From<WebTransportReliabilityMode> for JsValue
source§fn from(obj: WebTransportReliabilityMode) -> JsValue
fn from(obj: WebTransportReliabilityMode) -> JsValue
Converts to this type from the input type.
source§impl PartialEq for WebTransportReliabilityMode
impl PartialEq for WebTransportReliabilityMode
source§fn eq(&self, other: &WebTransportReliabilityMode) -> bool
fn eq(&self, other: &WebTransportReliabilityMode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for WebTransportReliabilityMode
impl Eq for WebTransportReliabilityMode
impl StructuralEq for WebTransportReliabilityMode
impl StructuralPartialEq for WebTransportReliabilityMode
Auto Trait Implementations§
impl RefUnwindSafe for WebTransportReliabilityMode
impl Send for WebTransportReliabilityMode
impl Sync for WebTransportReliabilityMode
impl Unpin for WebTransportReliabilityMode
impl UnwindSafe for WebTransportReliabilityMode
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere T: IntoWasmAbi,
§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.