[]Struct jni_android_sys::android::hardware::usb::UsbDeviceConnection

#[repr(transparent)]
pub struct UsbDeviceConnection(_);

public class UsbDeviceConnection

Required feature: "android-hardware-usb-UsbDeviceConnection"

Methods

impl UsbDeviceConnection

pub fn close<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn getFileDescriptor<'env>(
    &'env self
) -> Result<i32, Local<'env, Throwable>>
[src]

pub fn getRawDescriptors<'env>(
    &'env self
) -> Result<Option<Local<'env, ByteArray>>, Local<'env, Throwable>>
[src]

pub fn claimInterface<'env>(
    &'env self,
    arg0: impl Into<Option<&'env UsbInterface>>,
    arg1: bool
) -> Result<bool, Local<'env, Throwable>>
[src]

claimInterface

Required features: "android-hardware-usb-UsbInterface"

pub fn releaseInterface<'env>(
    &'env self,
    arg0: impl Into<Option<&'env UsbInterface>>
) -> Result<bool, Local<'env, Throwable>>
[src]

releaseInterface

Required features: "android-hardware-usb-UsbInterface"

pub fn setInterface<'env>(
    &'env self,
    arg0: impl Into<Option<&'env UsbInterface>>
) -> Result<bool, Local<'env, Throwable>>
[src]

setInterface

Required features: "android-hardware-usb-UsbInterface"

pub fn setConfiguration<'env>(
    &'env self,
    arg0: impl Into<Option<&'env UsbConfiguration>>
) -> Result<bool, Local<'env, Throwable>>
[src]

setConfiguration

Required features: "android-hardware-usb-UsbConfiguration"

pub fn controlTransfer_int_int_int_int_byte_array_int_int<'env>(
    &'env self,
    arg0: i32,
    arg1: i32,
    arg2: i32,
    arg3: i32,
    arg4: impl Into<Option<&'env ByteArray>>,
    arg5: i32,
    arg6: i32
) -> Result<i32, Local<'env, Throwable>>
[src]

pub fn controlTransfer_int_int_int_int_byte_array_int_int_int<'env>(
    &'env self,
    arg0: i32,
    arg1: i32,
    arg2: i32,
    arg3: i32,
    arg4: impl Into<Option<&'env ByteArray>>,
    arg5: i32,
    arg6: i32,
    arg7: i32
) -> Result<i32, Local<'env, Throwable>>
[src]

pub fn bulkTransfer_UsbEndpoint_byte_array_int_int<'env>(
    &'env self,
    arg0: impl Into<Option<&'env UsbEndpoint>>,
    arg1: impl Into<Option<&'env ByteArray>>,
    arg2: i32,
    arg3: i32
) -> Result<i32, Local<'env, Throwable>>
[src]

bulkTransfer

Required features: "android-hardware-usb-UsbEndpoint"

pub fn bulkTransfer_UsbEndpoint_byte_array_int_int_int<'env>(
    &'env self,
    arg0: impl Into<Option<&'env UsbEndpoint>>,
    arg1: impl Into<Option<&'env ByteArray>>,
    arg2: i32,
    arg3: i32,
    arg4: i32
) -> Result<i32, Local<'env, Throwable>>
[src]

bulkTransfer

Required features: "android-hardware-usb-UsbEndpoint"

pub fn requestWait<'env>(
    &'env self
) -> Result<Option<Local<'env, UsbRequest>>, Local<'env, Throwable>>
[src]

requestWait

Required features: "android-hardware-usb-UsbRequest"

pub fn requestWait_long<'env>(
    &'env self,
    arg0: i64
) -> Result<Option<Local<'env, UsbRequest>>, Local<'env, Throwable>>
[src]

requestWait

Required features: "android-hardware-usb-UsbRequest"

pub fn getSerial<'env>(
    &'env self
) -> Result<Option<Local<'env, String>>, Local<'env, Throwable>>
[src]

getSerial

Required features: "java-lang-String"

Methods from Deref<Target = Object>

pub fn getClass<'env>(
    &'env self
) -> Result<Option<Local<'env, Class>>, Local<'env, Throwable>>
[src]

getClass

Required features: "java-lang-Class"

pub fn hashCode<'env>(&'env self) -> Result<i32, Local<'env, Throwable>>[src]

pub fn equals<'env>(
    &'env self,
    arg0: impl Into<Option<&'env Object>>
) -> Result<bool, Local<'env, Throwable>>
[src]

equals

Required features: "java-lang-Object"

pub fn toString<'env>(
    &'env self
) -> Result<Option<Local<'env, String>>, Local<'env, Throwable>>
[src]

toString

Required features: "java-lang-String"

pub fn notify<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn notifyAll<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn wait_long<'env>(
    &'env self,
    arg0: i64
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn wait_long_int<'env>(
    &'env self,
    arg0: i64,
    arg1: i32
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn wait<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

Trait Implementations

impl AsJValue for UsbDeviceConnection

impl AsValidJObjectAndEnv for UsbDeviceConnection

impl Deref for UsbDeviceConnection

type Target = Object

The resulting type after dereferencing.

impl JniType for UsbDeviceConnection

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, 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.