[]Struct jni_android_sys::android::net::sip::SipAudioCall

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

public class SipAudioCall

Required feature: "android-net-sip-SipAudioCall"

Methods

impl SipAudioCall

pub fn new<'env>(
    __jni_env: &'env Env,
    arg0: impl Into<Option<&'env Context>>,
    arg1: impl Into<Option<&'env SipProfile>>
) -> Result<Local<'env, SipAudioCall>, Local<'env, Throwable>>
[src]

SipAudioCall

Required features: "android-content-Context", "android-net-sip-SipProfile"

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

setListener

Required features: "android-net-sip-SipAudioCall_Listener"

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

setListener

Required features: "android-net-sip-SipAudioCall_Listener"

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

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

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

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

getLocalProfile

Required features: "android-net-sip-SipProfile"

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

getPeerProfile

Required features: "android-net-sip-SipProfile"

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

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

attachCall

Required features: "android-net-sip-SipSession", "java-lang-String"

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

makeCall

Required features: "android-net-sip-SipProfile", "android-net-sip-SipSession"

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

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

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

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

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

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

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

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

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

sendDtmf

Required features: "android-os-Message"

pub fn startAudio<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[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 SipAudioCall

impl AsValidJObjectAndEnv for SipAudioCall

impl Deref for SipAudioCall

type Target = Object

The resulting type after dereferencing.

impl JniType for SipAudioCall

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.