[][src]Struct web_sys::UdpOptions

#[repr(transparent)]pub struct UdpOptions { /* fields omitted */ }

The UdpOptions dictionary.

This API requires the following crate features to be activated: UdpOptions

Implementations

impl UdpOptions[src]

pub fn new() -> Self[src]

Construct a new UdpOptions.

This API requires the following crate features to be activated: UdpOptions

pub fn address_reuse(&mut self, val: bool) -> &mut Self[src]

Change the addressReuse field of this object.

This API requires the following crate features to be activated: UdpOptions

pub fn local_address(&mut self, val: &str) -> &mut Self[src]

Change the localAddress field of this object.

This API requires the following crate features to be activated: UdpOptions

pub fn local_port(&mut self, val: u16) -> &mut Self[src]

Change the localPort field of this object.

This API requires the following crate features to be activated: UdpOptions

pub fn loopback(&mut self, val: bool) -> &mut Self[src]

Change the loopback field of this object.

This API requires the following crate features to be activated: UdpOptions

pub fn remote_address(&mut self, val: &str) -> &mut Self[src]

Change the remoteAddress field of this object.

This API requires the following crate features to be activated: UdpOptions

pub fn remote_port(&mut self, val: u16) -> &mut Self[src]

Change the remotePort field of this object.

This API requires the following crate features to be activated: UdpOptions

Trait Implementations

impl AsRef<JsValue> for UdpOptions[src]

impl AsRef<Object> for UdpOptions[src]

impl AsRef<UdpOptions> for UdpOptions[src]

impl Clone for UdpOptions[src]

impl Debug for UdpOptions[src]

impl Deref for UdpOptions[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for UdpOptions[src]

impl From<JsValue> for UdpOptions[src]

impl From<UdpOptions> for JsValue[src]

impl From<UdpOptions> for Object[src]

impl FromWasmAbi for UdpOptions[src]

type Abi = <JsValue as FromWasmAbi>::Abi

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl IntoWasmAbi for UdpOptions[src]

type Abi = <JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl<'a> IntoWasmAbi for &'a UdpOptions[src]

type Abi = <&'a JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl JsCast for UdpOptions[src]

impl OptionFromWasmAbi for UdpOptions[src]

impl OptionIntoWasmAbi for UdpOptions[src]

impl<'a> OptionIntoWasmAbi for &'a UdpOptions[src]

impl PartialEq<UdpOptions> for UdpOptions[src]

impl RefFromWasmAbi for UdpOptions[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<UdpOptions>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more

impl StructuralEq for UdpOptions[src]

impl StructuralPartialEq for UdpOptions[src]

impl WasmDescribe for UdpOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.