[]Struct jni_android_sys::android::telecom::Connection_VideoProvider

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

public class Connection.VideoProvider

Required feature: "android-telecom-Connection_VideoProvider"

Methods

impl Connection_VideoProvider

pub fn new<'env>(
    __jni_env: &'env Env
) -> Result<Local<'env, Connection_VideoProvider>, Local<'env, Throwable>>
[src]

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

onSetCamera

Required features: "java-lang-String"

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

onSetPreviewSurface

Required features: "android-view-Surface"

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

onSetDisplaySurface

Required features: "android-view-Surface"

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

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

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

onSendSessionModifyRequest

Required features: "android-telecom-VideoProfile"

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

onSendSessionModifyResponse

Required features: "android-telecom-VideoProfile"

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

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

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

onSetPauseImage

Required features: "android-net-Uri"

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

receiveSessionModifyRequest

Required features: "android-telecom-VideoProfile"

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

receiveSessionModifyResponse

Required features: "android-telecom-VideoProfile"

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

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

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

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

changeCameraCapabilities

Required features: "android-telecom-VideoProfile_CameraCapabilities"

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

pub const SESSION_EVENT_CAMERA_FAILURE: i32[src]

public static final SESSION_EVENT_CAMERA_FAILURE

pub const SESSION_EVENT_CAMERA_PERMISSION_ERROR: i32[src]

pub const SESSION_EVENT_CAMERA_READY: i32[src]

public static final SESSION_EVENT_CAMERA_READY

pub const SESSION_EVENT_RX_PAUSE: i32[src]

public static final SESSION_EVENT_RX_PAUSE

pub const SESSION_EVENT_RX_RESUME: i32[src]

public static final SESSION_EVENT_RX_RESUME

pub const SESSION_EVENT_TX_START: i32[src]

public static final SESSION_EVENT_TX_START

pub const SESSION_EVENT_TX_STOP: i32[src]

public static final SESSION_EVENT_TX_STOP

pub const SESSION_MODIFY_REQUEST_FAIL: i32[src]

public static final SESSION_MODIFY_REQUEST_FAIL

pub const SESSION_MODIFY_REQUEST_INVALID: i32[src]

public static final SESSION_MODIFY_REQUEST_INVALID

pub const SESSION_MODIFY_REQUEST_REJECTED_BY_REMOTE: i32[src]

pub const SESSION_MODIFY_REQUEST_SUCCESS: i32[src]

public static final SESSION_MODIFY_REQUEST_SUCCESS

pub const SESSION_MODIFY_REQUEST_TIMED_OUT: i32[src]

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 Connection_VideoProvider

impl AsValidJObjectAndEnv for Connection_VideoProvider

impl Deref for Connection_VideoProvider

type Target = Object

The resulting type after dereferencing.

impl JniType for Connection_VideoProvider

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.