[][src]Struct web_sys::UsbDevice

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

The UsbDevice class.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

Implementations

impl UsbDevice[src]

pub fn usb_version_major(&self) -> u8[src]

Getter for the usbVersionMajor field of this object.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn usb_version_minor(&self) -> u8[src]

Getter for the usbVersionMinor field of this object.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn usb_version_subminor(&self) -> u8[src]

Getter for the usbVersionSubminor field of this object.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn device_class(&self) -> u8[src]

Getter for the deviceClass field of this object.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn device_subclass(&self) -> u8[src]

Getter for the deviceSubclass field of this object.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn device_protocol(&self) -> u8[src]

Getter for the deviceProtocol field of this object.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn vendor_id(&self) -> u16[src]

Getter for the vendorId field of this object.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn product_id(&self) -> u16[src]

Getter for the productId field of this object.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn device_version_major(&self) -> u8[src]

Getter for the deviceVersionMajor field of this object.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn device_version_minor(&self) -> u8[src]

Getter for the deviceVersionMinor field of this object.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn device_version_subminor(&self) -> u8[src]

Getter for the deviceVersionSubminor field of this object.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn manufacturer_name(&self) -> Option<String>[src]

Getter for the manufacturerName field of this object.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn product_name(&self) -> Option<String>[src]

Getter for the productName field of this object.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn serial_number(&self) -> Option<String>[src]

Getter for the serialNumber field of this object.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn configuration(&self) -> Option<UsbConfiguration>[src]

Getter for the configuration field of this object.

MDN Documentation

This API requires the following crate features to be activated: UsbConfiguration, UsbDevice

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn configurations(&self) -> Array[src]

Getter for the configurations field of this object.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn opened(&self) -> bool[src]

Getter for the opened field of this object.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn claim_interface(&self, interface_number: u8) -> Promise[src]

The claimInterface() method.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn clear_halt(
    &self,
    direction: UsbDirection,
    endpoint_number: u8
) -> Promise
[src]

The clearHalt() method.

MDN Documentation

This API requires the following crate features to be activated: UsbDevice, UsbDirection

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn close(&self) -> Promise[src]

The close() method.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn control_transfer_in(
    &self,
    setup: &UsbControlTransferParameters,
    length: u16
) -> Promise
[src]

The controlTransferIn() method.

MDN Documentation

This API requires the following crate features to be activated: UsbControlTransferParameters, UsbDevice

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn control_transfer_out(
    &self,
    setup: &UsbControlTransferParameters
) -> Promise
[src]

The controlTransferOut() method.

MDN Documentation

This API requires the following crate features to be activated: UsbControlTransferParameters, UsbDevice

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn control_transfer_out_with_buffer_source(
    &self,
    setup: &UsbControlTransferParameters,
    data: &Object
) -> Promise
[src]

The controlTransferOut() method.

MDN Documentation

This API requires the following crate features to be activated: UsbControlTransferParameters, UsbDevice

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn control_transfer_out_with_u8_array(
    &self,
    setup: &UsbControlTransferParameters,
    data: &mut [u8]
) -> Promise
[src]

The controlTransferOut() method.

MDN Documentation

This API requires the following crate features to be activated: UsbControlTransferParameters, UsbDevice

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn isochronous_transfer_in(
    &self,
    endpoint_number: u8,
    packet_lengths: &JsValue
) -> Promise
[src]

The isochronousTransferIn() method.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn isochronous_transfer_out_with_buffer_source(
    &self,
    endpoint_number: u8,
    data: &Object,
    packet_lengths: &JsValue
) -> Promise
[src]

The isochronousTransferOut() method.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn isochronous_transfer_out_with_u8_array(
    &self,
    endpoint_number: u8,
    data: &mut [u8],
    packet_lengths: &JsValue
) -> Promise
[src]

The isochronousTransferOut() method.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn open(&self) -> Promise[src]

The open() method.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn release_interface(&self, interface_number: u8) -> Promise[src]

The releaseInterface() method.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn reset(&self) -> Promise[src]

The reset() method.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn select_alternate_interface(
    &self,
    interface_number: u8,
    alternate_setting: u8
) -> Promise
[src]

The selectAlternateInterface() method.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn select_configuration(&self, configuration_value: u8) -> Promise[src]

The selectConfiguration() method.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn transfer_in(&self, endpoint_number: u8, length: u32) -> Promise[src]

The transferIn() method.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn transfer_out_with_buffer_source(
    &self,
    endpoint_number: u8,
    data: &Object
) -> Promise
[src]

The transferOut() method.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl UsbDevice[src]

pub fn transfer_out_with_u8_array(
    &self,
    endpoint_number: u8,
    data: &mut [u8]
) -> Promise
[src]

The transferOut() method.

MDN Documentation

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

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

Trait Implementations

impl AsRef<JsValue> for UsbDevice[src]

impl AsRef<Object> for UsbDevice[src]

impl AsRef<UsbDevice> for UsbDevice[src]

impl Clone for UsbDevice[src]

impl Debug for UsbDevice[src]

impl Deref for UsbDevice[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for UsbDevice[src]

impl From<JsValue> for UsbDevice[src]

impl From<UsbDevice> for JsValue[src]

impl From<UsbDevice> for Object[src]

impl FromWasmAbi for UsbDevice[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 UsbDevice[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 UsbDevice[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 UsbDevice[src]

impl OptionFromWasmAbi for UsbDevice[src]

impl OptionIntoWasmAbi for UsbDevice[src]

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

impl PartialEq<UsbDevice> for UsbDevice[src]

impl RefFromWasmAbi for UsbDevice[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<UsbDevice>

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 UsbDevice[src]

impl StructuralPartialEq for UsbDevice[src]

impl WasmDescribe for UsbDevice[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.