[]Struct jni_android_sys::android::hardware::camera2::CameraConstrainedHighSpeedCaptureSession

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

public class CameraConstrainedHighSpeedCaptureSession

Required feature: "android-hardware-camera2-CameraConstrainedHighSpeedCaptureSession"

Methods

impl CameraConstrainedHighSpeedCaptureSession

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

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

createHighSpeedRequestList

Required features: "android-hardware-camera2-CaptureRequest", "java-util-List"

Methods from Deref<Target = CameraCaptureSession>

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

getDevice

Required features: "android-hardware-camera2-CameraDevice"

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

prepare

Required features: "android-view-Surface"

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

finalizeOutputConfigurations

Required features: "java-util-List"

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

capture

Required features: "android-hardware-camera2-CameraCaptureSession_CaptureCallback", "android-hardware-camera2-CaptureRequest", "android-os-Handler"

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

captureSingleRequest

Required features: "android-hardware-camera2-CameraCaptureSession_CaptureCallback", "android-hardware-camera2-CaptureRequest", "java-util-concurrent-Executor"

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

captureBurst

Required features: "android-hardware-camera2-CameraCaptureSession_CaptureCallback", "android-os-Handler", "java-util-List"

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

captureBurstRequests

Required features: "android-hardware-camera2-CameraCaptureSession_CaptureCallback", "java-util-List", "java-util-concurrent-Executor"

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

setRepeatingRequest

Required features: "android-hardware-camera2-CameraCaptureSession_CaptureCallback", "android-hardware-camera2-CaptureRequest", "android-os-Handler"

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

setSingleRepeatingRequest

Required features: "android-hardware-camera2-CameraCaptureSession_CaptureCallback", "android-hardware-camera2-CaptureRequest", "java-util-concurrent-Executor"

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

setRepeatingBurst

Required features: "android-hardware-camera2-CameraCaptureSession_CaptureCallback", "android-os-Handler", "java-util-List"

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

setRepeatingBurstRequests

Required features: "android-hardware-camera2-CameraCaptureSession_CaptureCallback", "java-util-List", "java-util-concurrent-Executor"

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

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

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

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

getInputSurface

Required features: "android-view-Surface"

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

updateOutputConfiguration

Required features: "android-hardware-camera2-params-OutputConfiguration"

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

Trait Implementations

impl AsJValue for CameraConstrainedHighSpeedCaptureSession

impl AsValidJObjectAndEnv for CameraConstrainedHighSpeedCaptureSession

impl Deref for CameraConstrainedHighSpeedCaptureSession

type Target = CameraCaptureSession

The resulting type after dereferencing.

impl JniType for CameraConstrainedHighSpeedCaptureSession

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.